Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.9.3, 1.0, and 1.0.1

stable history: do not refresh URL list when a bundle is applied

In testing, it seems like this wasn't strictly necessary, but only because the
URL combo box is unsensitive while a bundle is applied. It's still a good idea
to early out in this functon just to be safe.

Changeset cd85564ce3c9

Parent bfca006d55d0

by Steve Borho

Changes to one file · Browse files at cd85564ce3c9 Showing diff from parent bfca006d55d0 Diff from another changeset...

 
1438
1439
1440
 
 
1441
1442
1443
 
1438
1439
1440
1441
1442
1443
1444
1445
@@ -1438,6 +1438,8 @@
  self.update_postpull()     def update_urllist(self): + if self.bfile: + return   urllist = self.urlcombo.get_model()   urllist.clear()   for alias, path in self.repo.ui.configitems('paths'):