Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 2.0.3, 2.0.4, and 2.0.5

hgtk history: bookmarks menu items should be shown unconditionally

Changeset f0de3d1b37d2

Parent cea78e7c7931

by Steve Borho

Changes to one file · Browse files at f0de3d1b37d2 Showing diff from parent cea78e7c7931 Diff from another changeset...

 
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
 
 
1349
1350
1351
 
1339
1340
1341
 
 
 
 
 
 
 
1342
1343
1344
1345
1346
@@ -1339,13 +1339,8 @@
  def tags_context_menu(self):   m = gtklib.MenuBuilder()   m.append(_('Add/Remove _Tag...'), self.add_tag) - if 'bookmarks' in self.exs: - m.append(_('Add/Move/Remove B_ookmark...'), self.add_bookmark) - m.append(_('Rename Bookmark...'), self.rename_bookmark, - gtk.STOCK_EDIT) - if self.repo.ui.configbool('bookmarks', 'track.current'): - m.append(_('Set Current Bookmark...'), self.current_bookmark, - gtk.STOCK_YES) + m.append(_('Add/Move/Remove B_ookmark...'), self.add_bookmark) + m.append(_('Rename Bookmark...'), self.rename_bookmark, gtk.STOCK_EDIT)   return m.build()     def mq_context_menu(self):