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

gdialog: make toolbar button sizes homogeneous

Some tools, like commit, like to change toolbar button names. When this
happens GTK likes to resize the buttons and this is not user friendly.
Making the buttons homogeneous makes the commit tool buttons stable, and
I think it also makes the toolbar easier to read (perhaps personal taste)

Changeset 86608d5fb61b

Parent baa31bf246eb

by Steve Borho

Changes to one file · Browse files at 86608d5fb61b Showing diff from parent baa31bf246eb Diff from another changeset...

 
457
458
459
 
 
460
461
462
 
457
458
459
460
461
462
463
464
@@ -457,6 +457,8 @@
  tbuttons = self.get_tbbuttons()   for tbutton in tbuttons:   toolbar.insert(tbutton, -1) + for x in toolbar.get_children(): + x.set_homogeneous(True)   self.toolbar = toolbar     # Subclass returns the main body