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

stable history: on double click, activate visual diff directly

Instead of going through the top most menu item in the popup menu. This
currently doesn't work for the changelog, and also seems more complicated
than necessary.

Changeset 0ba644ca6fa9

Parent deb150741d6c

by Sune Foldager

Changes to 2 files · Browse files at 0ba644ca6fa9 Showing diff from parent deb150741d6c Diff from another changeset...

 
689
690
691
692
693
694
 
 
695
696
697
 
689
690
691
 
 
 
692
693
694
695
696
@@ -689,9 +689,8 @@
  opts = {'change':str(self.currev), 'bundle':self.bfile}   self._do_diff([self.curfile], opts)   - def file_row_act(self, tree, path, column) : - 'Default action is the first entry in the context menu' - self.filemenu.get_children()[0].activate() + def file_row_act(self, tree, path, column): + self.diff_file_rev(None)   return True     def save_file_rev(self, menuitem):
 
1902
1903
1904
1905
1906
 
1907
1908
1909
 
1902
1903
1904
 
 
1905
1906
1907
1908
@@ -1902,8 +1902,7 @@
  return True     def tree_row_act(self, tree, path, column) : - 'Default action is the first entry in the context menu' - self.tree_context_menu().get_children()[0].activate() + self.vdiff_change(None)   return True    def run(ui, *pats, **opts):