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: add "Load more/all" commands to "View" menu

Changeset 5d2e55be571e

Parent f477117cb1c0

by Adrian Buehlmann

Changes to one file · Browse files at 5d2e55be571e Showing diff from parent f477117cb1c0 Diff from another changeset...

 
136
137
138
139
 
 
 
 
 
 
 
140
141
142
 
136
137
138
 
139
140
141
142
143
144
145
146
147
148
@@ -136,7 +136,13 @@
  sync_bar_item = [dict(text=_('Sync Bar'), ascheck=True,   func=self.toggle_show_syncbar, check=self.show_syncbar)]   - return [(_('_View'), sync_bar_item + [ + return [(_('_View'), [ + dict(text=_('Load more Revisions'), name='load-more', + func=self.more_clicked, icon=gtk.STOCK_GO_DOWN), + dict(text=_('Load all Revisions'), name='load-all', + func=self.load_all_clicked, icon=gtk.STOCK_GOTO_BOTTOM), + dict(text='----') + ] + sync_bar_item + [   dict(text=_('Filter Bar'), ascheck=True,   func=self.toggle_show_filterbar, check=self.show_filterbar),   dict(text='----'),