Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.6, 0.7, and 0.7.1

thgconfig: Automatically edit added path alias

In the path tab it is possible to add a new path alias.
This patch will automatically start editing the new alias
after the path has been added.

Changeset 36ecd3d4d872

Parent e29c65bdc55b

by Peer Sommerlund

Changes to one file · Browse files at 36ecd3d4d872 Showing diff from parent e29c65bdc55b Diff from another changeset...

 
335
336
337
 
 
 
 
338
339
340
 
335
336
337
338
339
340
341
342
343
344
@@ -335,6 +335,10 @@
  self.pathdata.set_value(iter, 0, 'new')   self.pathdata.set_value(iter, 1, '%s' % newpath)   self.pathtree.get_selection().select_iter(iter) + self.pathtree.set_cursor( + self.pathdata.get_path(iter), + self.pathtree.get_column(0), + start_editing=True)   self.refresh_path_list()   # This method may be called from hggtk.sync, so ensure page is visible   self.notebook.set_current_page(2)