Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.9.3, 2.0, and 2.0.1

stable qqueue: unicode labels for add/rename dialogs

Changeset c2390ef39123

Parent bc16f41b0a41

by Johan Samyn

Changes to one file · Browse files at c2390ef39123 Showing diff from parent bc16f41b0a41 Diff from another changeset...

 
264
265
266
267
 
268
269
270
 
280
281
282
283
 
284
285
286
 
264
265
266
 
267
268
269
270
 
280
281
282
 
283
284
285
286
@@ -264,7 +264,7 @@
  def qqueueAdd(self):   title = _('TortoiseHg Prompt')   # this is the only way I found to make that dialog wide enough :( - label = QString(_('New patch queue name') + (' ' * 30)) + label = _('New patch queue name') + (u' ' * 30)   # WindowContextHelpButton still there :( after this ?   dlg = QInputDialog(self, Qt.WindowFlags()   & ~Qt.WindowContextHelpButtonHint) @@ -280,7 +280,7 @@
  return   title = _('TortoiseHg Prompt')   # this is the only way I found to make that dialog wide enough :( - label = QString(_('Rename patch queue \'%s\' to' % q) + (' ' * 30)) + label = _('Rename patch queue \'%s\' to' % q) + (u' ' * 30)   # WindowContextHelpButton still there :( after this ?   dlg = QInputDialog(self, Qt.WindowFlags()   & ~Qt.WindowContextHelpButtonHint)