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

stable history: set tooltips in a pygtk 2.10 compatible way

Changeset 308919734348

Parent 7d27fa92f10a

by Wagner Bruna

Changes to one file · Browse files at 308919734348 Showing diff from parent 7d27fa92f10a Diff from another changeset...

 
1037
1038
1039
1040
1041
 
1042
1043
1044
 
1054
1055
1056
1057
1058
 
1059
1060
1061
 
1037
1038
1039
 
 
1040
1041
1042
1043
 
1053
1054
1055
 
 
1056
1057
1058
1059
@@ -1037,8 +1037,7 @@
    branches = gtk.RadioButton(all)   branches.connect('toggled', self.filter_selected, 'branch') - branches.set_property('tooltip-text', _('Branch Filter')) - branches.set_property('has-tooltip', True) + self.tooltips.set_tip(branches, _('Branch Filter'))   branches.set_sensitive(False)   filterbox.append_widget(branches, padding=0)   self.branchbutton = branches @@ -1054,8 +1053,7 @@
  self.branchcombo = branchcombo     self.custombutton = gtk.RadioButton(all) - self.custombutton.set_property('tooltip-text', _('Custom Filter')) - self.custombutton.set_property('has-tooltip', True) + self.tooltips.set_tip(self.custombutton, _('Custom Filter'))   self.custombutton.set_sensitive(False)   filterbox.append_widget(self.custombutton, padding=0)