Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.1, 1.1.1, and 1.1.2

history: Add patch branch to view menu

Changeset 59f48801dc45

Parent 4b9707978ad5

by Peer Sommerlund

Changes to one file · Browse files at 59f48801dc45 Showing diff from parent 4b9707978ad5 Diff from another changeset...

 
333
334
335
 
 
 
 
 
 
336
337
338
 
345
346
347
348
 
349
350
351
 
333
334
335
336
337
338
339
340
341
342
343
344
 
351
352
353
 
354
355
356
357
@@ -333,6 +333,12 @@
  else:   p4menu = []   + if 'pbranch' in self.exs: + pbranch_item = [dict(text=_('Patch Branch'), name='pbranch', ascheck=True, + func=self.pbranch_clicked, check=self.setting_pbranchvis) ] + else: + pbranch_item = [] +   return [   dict(text=_('_View'), subitems=[   dict(text=_('Load more Revisions'), name='load-more', @@ -345,7 +351,7 @@
  ] + sync_bar_item + [   dict(text=_('Filter Bar'), ascheck=True,   func=self.toggle_show_filterbar, check=self.show_filterbar), - ] + mq_item + [ + ] + mq_item + pbranch_item + [   dict(text='----'),   dict(text=_('Refresh'), func=refresh, args=[False],   icon=gtk.STOCK_REFRESH),