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 thgconfig: fix the order of bottom buttons

"[OK] [Cancel] [Apply]" is the common order on Windows.
i.e. Display Properties, Recycle Bin Properties, ...etc

Changeset a65819ee8b5e

Parent 7c8f627fb3cb

by Yuki KODAMA

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

 
516
517
518
519
520
521
 
 
 
522
523
 
524
525
526
 
516
517
518
 
 
 
519
520
521
522
 
523
524
525
526
@@ -516,11 +516,11 @@
  def __init__(self, configrepo=False):   """ Initialize the Dialog. """   gtk.Dialog.__init__(self, parent=None, flags=0, - buttons=(gtk.STOCK_CANCEL, gtk.RESPONSE_CANCEL, - gtk.STOCK_APPLY, gtk.RESPONSE_APPLY, - gtk.STOCK_OK, gtk.RESPONSE_OK)) + buttons=(gtk.STOCK_OK, gtk.RESPONSE_OK, + gtk.STOCK_CANCEL, gtk.RESPONSE_CANCEL, + gtk.STOCK_APPLY, gtk.RESPONSE_APPLY))   gtklib.set_tortoise_keys(self) - self._btn_apply = self.action_area.get_children()[1] + self._btn_apply = self.action_area.get_children()[0]     self.ui = ui.ui()   try: