Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 2.1.1, 2.1.2, and tip

stable wctxactions: fix rename from status/commit dialogs (fixes #902)

Changeset b3a56b2e952d

Parent d9cccc4132bf

by Steve Borho

Changes to 2 files · Browse files at b3a56b2e952d Showing diff from parent d9cccc4132bf Diff from another changeset...

 
17
18
19
 
 
20
21
22
 
17
18
19
20
21
22
23
24
@@ -17,6 +17,8 @@
 from tortoisehg.hgqt import cmdui, qtlib, thgrepo, manifestmodel  from tortoisehg.util import hglib, paths   +# TODO: this dialog should take a repo argument, not ui +  class RenameDialog(QDialog):   """TortoiseHg rename dialog"""  
 
316
317
318
319
 
320
321
322
 
316
317
318
 
319
320
321
322
@@ -316,7 +316,7 @@
 def rename(parent, ui, repo, files):   from tortoisehg.hgqt.rename import RenameDialog   assert len(files) == 1 - dlg = RenameDialog(repo, files, parent) + dlg = RenameDialog(ui, files, parent)   dlg.finished.connect(dlg.deleteLater)   dlg.exec_()   return True