Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.9, 0.9.1, and 0.9.1.1

history: add separators in tree context menu

Changeset c22982d43f30

Parent cf86c3624aa1

by Adrian Buehlmann

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

 
605
606
607
 
608
 
609
610
 
611
612
613
614
615
 
616
 
617
618
619
 
620
621
622
 
623
624
625
 
661
662
663
 
664
665
666
 
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
 
668
669
670
671
672
673
674
@@ -605,21 +605,28 @@
  m.append(create_menu(_('visualize change'), self.vdiff_change))   m.append(create_menu(_('di_splay change'), self.show_status))   m.append(create_menu(_('diff to local'), self.vdiff_local)) + m.append(gtk.SeparatorMenuItem())   m.append(create_menu(_('_copy hash'), self.copy_hash)) + cursep = len(m)   if self.bfile:   if self.currevid >= len(self.repo) - self.npreviews: + m.append(gtk.SeparatorMenuItem())   m.append(create_menu(_('pull to here'), self.pull_to))   m.show_all()   return m     if self.repo[self.currevid].node() in self.outgoing: + m.append(gtk.SeparatorMenuItem())   m.append(create_menu(_('push to here'), self.push_to)) + m.append(gtk.SeparatorMenuItem())   m.append(create_menu(_('_update'), self.checkout))   cmenu_merge = create_menu(_('_merge with'), self.domerge)   m.append(cmenu_merge) + m.append(gtk.SeparatorMenuItem())   m.append(create_menu(_('_export patch'), self.export_patch))   m.append(create_menu(_('e_mail patch'), self.email_patch))   m.append(create_menu(_('_bundle rev:tip'), self.bundle_rev_to_tip)) + m.append(gtk.SeparatorMenuItem())   m.append(create_menu(_('add/remove _tag'), self.add_tag))   cmenu_backout = create_menu(_('backout revision'), self.backout_rev)   m.append(cmenu_backout) @@ -661,6 +668,7 @@
  except:   pass   + m.append(gtk.SeparatorMenuItem())   m.append(cmenu_qimport)   m.append(cmenu_strip)