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

history: move 'more' toolbar buttons to right edge

Changeset f432f6a6cf61

Parent 4249c27c4677

by Steve Borho

Changes to one file · Browse files at f432f6a6cf61 Showing diff from parent 4249c27c4677 Diff from another changeset...

Change 1 of 1 Show Entire File hggtk/​history.py Stacked
 
80
81
82
 
 
 
83
84
85
86
87
 
88
89
90
 
80
81
82
83
84
85
86
87
88
89
 
90
91
92
93
@@ -80,11 +80,14 @@
  tip=_('Launch synchronize tool'))   tbar += [gtk.SeparatorToolItem(), self.synctb]   + sep = gtk.SeparatorToolItem() + sep.set_expand(True) + sep.set_draw(False)   self.nextbutton = self.make_toolbutton(gtk.STOCK_GO_DOWN,   _('Load more'), self.more_clicked, tip=_('load more revisions'))   self.allbutton = self.make_toolbutton(gtk.STOCK_GOTO_BOTTOM,   _('Load all'), self.load_all_clicked, tip=_('load all revisions')) - tbar += [gtk.SeparatorToolItem(), self.nextbutton, self.allbutton] + tbar += [sep, self.nextbutton, self.allbutton]     return tbar