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

history: add refresh button to sync bar

Addresses #713

Changeset 3f89ff8ec2ba

Parent 6ae2379df869

by Emmanuel Rosa

Changes to one file · Browse files at 3f89ff8ec2ba Showing diff from parent 6ae2379df869 Diff from another changeset...

 
1047
1048
1049
 
 
 
1050
1051
1052
 
1117
1118
1119
 
1120
1121
1122
 
1047
1048
1049
1050
1051
1052
1053
1054
1055
 
1120
1121
1122
1123
1124
1125
1126
@@ -1047,6 +1047,9 @@
  self.syncbox = gtklib.SlimToolbar(self.tooltips)   syncbox = self.syncbox   + refresh = syncbox.append_stock(gtk.STOCK_REFRESH, + _('Reload revision history')) + syncbox.append_widget(gtk.VSeparator())   incoming = syncbox.append_stock(gtk.STOCK_GO_DOWN,   _('Download and view incoming changesets'))   apply = syncbox.append_stock(gtk.STOCK_APPLY, @@ -1117,6 +1120,7 @@
  _('Configure aliases and after pull behavior'))     ## connect syncbar buttons + refresh.connect('clicked', self.refresh_clicked)   incoming.connect('clicked', self.incoming_clicked)   pull.connect('clicked', self.pull_clicked)   outgoing.connect('clicked', self.outgoing_clicked)