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

unicode: encode dialog title to unicode

Changeset c16cf492c2fe

Parent 7f1bf844c03e

by Yuki KODAMA

Changes to one file · Browse files at c16cf492c2fe Showing diff from parent 7f1bf844c03e Diff from another changeset...

 
132
133
134
135
 
 
136
137
138
 
132
133
134
 
135
136
137
138
139
@@ -132,7 +132,8 @@
  # dialog setting   self.setLayout(box)   self.layout().setSizeConstraint(QLayout.SetFixedSize) - self.setWindowTitle(_('Update - %s') % hglib.get_reponame(self.repo)) + reponame = hglib.get_reponame(self.repo) + self.setWindowTitle(_('Update - %s') % hglib.tounicode(reponame))     # prepare to show   self.rev_combo.lineEdit().selectAll()