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 icons to Tag context menu

Changeset e30db7d579bd

Parent 6025cf548693

by Yuki KODAMA

Changes to one file · Browse files at e30db7d579bd Showing diff from parent 6025cf548693 Diff from another changeset...

 
1136
1137
1138
1139
 
1140
1141
1142
 
1184
1185
1186
1187
 
 
1188
1189
 
 
1190
1191
1192
 
1136
1137
1138
 
1139
1140
1141
1142
 
1184
1185
1186
 
1187
1188
1189
 
1190
1191
1192
1193
1194
@@ -1136,7 +1136,7 @@
  m.append_sep()   m.append_submenu(_('Export'), self.export_context_menu(), gtk.STOCK_GO_FORWARD)   m.append_sep() - m.append_submenu(_('Tag'), self.tags_context_menu()) + m.append_submenu(_('Tag'), self.tags_context_menu(), gtk.STOCK_ITALIC)   m.append_sep()     # disable/enable menus as required @@ -1184,9 +1184,11 @@
  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) + 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) + m.append(_('Set Current Bookmark...'), self.current_bookmark, + gtk.STOCK_YES)   return m.build()     def mq_context_menu(self):