Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 2.0.4, 2.0.5, and 2.1

stable rename: complete src/dest path with manifest

Changeset e38f83200e70

Parent 55a9702a7126

by Yuya Nishihara

Changes to one file · Browse files at e38f83200e70 Showing diff from parent 55a9702a7126 Diff from another changeset...

 
14
15
16
17
 
18
19
20
 
72
73
74
 
 
 
 
 
75
76
77
 
14
15
16
 
17
18
19
20
 
72
73
74
75
76
77
78
79
80
81
82
@@ -14,7 +14,7 @@
 from mercurial import util, error    from tortoisehg.hgqt.i18n import _ -from tortoisehg.hgqt import cmdui, qtlib, thgrepo +from tortoisehg.hgqt import cmdui, qtlib, thgrepo, manifestmodel  from tortoisehg.util import hglib, paths    class RenameDialog(QDialog): @@ -72,6 +72,11 @@
  self.dest_btn = QPushButton(_('Browse...'))   self.copy_chk = QCheckBox(_('Copy source -> destination'))   + comp = manifestmodel.ManifestCompleter(self) + comp.setModel(manifestmodel.ManifestModel(self.repo, parent=comp)) + self.src_txt.setCompleter(comp) + self.dest_txt.setCompleter(comp) +   # some extras   self.dummy_lbl = QLabel('')   self.hgcmd_lbl = QLabel(_('Hg command:'))