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

commit: disable 'close branch' radio button in case of 'default' branch

Changeset 8f53dfec8a0f

Parent 269b48e0b019

by Yuki KODAMA

Changes to one file · Browse files at 8f53dfec8a0f Showing diff from parent 269b48e0b019 Diff from another changeset...

 
90
91
92
 
 
93
94
95
 
90
91
92
93
94
95
96
97
@@ -90,6 +90,8 @@
  self.closebranchradio.set_active(True)   else:   nochanges.set_active(True) + if repo[None].branch() == 'default': + self.closebranchradio.set_sensitive(False)     self.show_all()