Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.9, 1.9.1, and 1.9.2

clone: show CWD path in dialog title

Changeset 9e302f8e3e16

Parent 59f63488d7b5

by Yuki KODAMA

Changes to one file · Browse files at 9e302f8e3e16 Showing diff from parent 59f63488d7b5 Diff from another changeset...

 
27
28
29
30
31
 
32
33
34
 
133
134
135
136
 
137
138
139
 
27
28
29
 
 
30
31
32
33
 
132
133
134
 
135
136
137
138
@@ -27,8 +27,7 @@
  self.setWindowFlags(self.windowFlags() & ~Qt.WindowContextHelpButtonHint)   self.ui = ui.ui()   - src = hglib.tounicode(os.getcwd()) - dest = src + dest = src = cwd = hglib.tounicode(os.getcwd())   if len(args) > 1:   src = args[0]   dest = args[1] @@ -133,7 +132,7 @@
  # dialog setting   self.setLayout(box)   self.layout().setSizeConstraint(QLayout.SetFixedSize) - self.setWindowTitle(_('Clone - TortoiseHg')) + self.setWindowTitle(_('Clone - %s') % cwd)     # prepare to show   self.cmd.setHidden(True)