Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.8, 0.8.1, and 0.8.2

thgconfig: open dialog when only double-click on path item

Changeset b066411caded

Parent 154f1ce31c89

by Yuki KODAMA

Changes to one file · Browse files at b066411caded Showing diff from parent 154f1ce31c89 Diff from another changeset...

 
663
664
665
666
 
 
 
 
667
668
669
 
663
664
665
 
666
667
668
669
670
671
672
@@ -663,7 +663,10 @@
    def _pathtree_pressed(self, widget, event):   if event.button == 1 and event.type == gtk.gdk._2BUTTON_PRESS: - self._edit_path() + x, y = int(event.x), int(event.y) + pathinfo = self.pathtree.get_path_at_pos(x, y) + if pathinfo is not None: + self._edit_path()     def refresh_path_list(self):   """Update sensitivity of buttons"""