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

commit: catch up with new menu structure

Changeset 4c79056fd70f

Parent 0b55d32b9920

by Yuki KODAMA

Changes to one file · Browse files at 4c79056fd70f Showing diff from parent 0b55d32b9920 Diff from another changeset...

 
209
210
211
212
 
 
213
214
215
 
221
222
223
224
225
 
 
 
226
227
228
 
239
240
241
242
243
 
 
244
245
246
 
209
210
211
 
212
213
214
215
216
 
222
223
224
 
 
225
226
227
228
229
230
 
241
242
243
 
 
244
245
246
247
248
@@ -209,7 +209,8 @@
  func=self.mq_clicked, check=self.setting_mqvis) ]   else:   mq_item = [] - return [(_('_View'), [ + return [ + dict(text=_('_View'), subitems=[   dict(text=_('Toolbar'), ascheck=True, check=self.showtoolbar,   func=toggle_showtoolbar),   dict(text=_('Advanced'), ascheck=True, func=toggle, @@ -221,8 +222,9 @@
  dict(text=_('Refresh'), func=refresh, icon=gtk.STOCK_REFRESH),   dict(text='----'),   dict(name='always-show-output', text=_('Always Show Output'), - ascheck=True, func=toggle_showoutput, check=self.showoutput)]), - (_('_Operations'), [ + ascheck=True, func=toggle_showoutput, check=self.showoutput) + ]), + dict(text=_('_Operations'), subitems=[   dict(text=_('_Commit'), func=self.commit_clicked,   icon=gtk.STOCK_OK),   dict(name='undo', text=_('_Undo'), func=self.undo_clicked, @@ -239,8 +241,8 @@
  dict(name='move', text=_('Move'), func=self.move_clicked,   icon=gtk.STOCK_JUMP_TO),   dict(name='forget', text=_('_Forget'), func=self.forget_clicked, - icon=gtk.STOCK_CLEAR)]), - ] + icon=gtk.STOCK_CLEAR) + ])]     def save_settings(self):   settings = GStatus.save_settings(self)