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

commit: change sensitive of gtk.ComboBoxEntry, not gtk.Entry

Changeset 2d4991a13eae

Parent 8f53dfec8a0f

by Yuki KODAMA

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

 
77
78
79
80
 
81
82
83
 
95
96
97
98
99
 
 
100
101
102
 
77
78
79
 
80
81
82
83
 
95
96
97
 
 
98
99
100
101
102
@@ -77,7 +77,7 @@
    # signal handlers   self.connect('response', self.response) - self.newbranchradio.connect('toggled', self.nbtoggle) + self.newbranchradio.connect('toggled', self.nbtoggle, branchcombo)   self.branchentry.connect('activate', self.activated)     # prepare to show @@ -95,8 +95,8 @@
    self.show_all()   - def nbtoggle(self, radio): - self.branchentry.set_sensitive(radio.get_active()) + def nbtoggle(self, radio, combo): + combo.set_sensitive(radio.get_active())   if radio.get_active():   self.branchentry.grab_focus()