Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.9, 0.9.1, and 0.9.1.1

history: allow post-pull to be changed during preview mode

Fixes #604

Changeset a7c730472787

Parent 41f2f6d4f98b

by Steve Borho

Changes to one file · Browse files at a7c730472787 Showing diff from parent 41f2f6d4f98b Diff from another changeset...

 
1045
1046
1047
1048
1049
 
 
 
 
 
1050
1051
1052
 
1045
1046
1047
 
 
1048
1049
1050
1051
1052
1053
1054
1055
@@ -1045,8 +1045,11 @@
  if tb:   tb.set_sensitive(False)   disabled.append(tb) - self.syncbox.set_sensitive(False) - disabled.append(self.syncbox) + def disable_child(w): + if w != self.ppullcombo: + w.set_sensitive(False) + disabled.append(w) + self.syncbox.foreach(disable_child)     self.bfile = bfile   oldtip = len(self.repo)