Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.9, 0.9.1, and 0.9.1.1

dialog: fix encoding

Changeset 50ff05f8ccb9

Parent 09cc55cda934

by Yuki KODAMA

Changes to one file · Browse files at 50ff05f8ccb9 Showing diff from parent 09cc55cda934 Diff from another changeset...

 
16
17
18
 
19
20
21
 
35
36
37
38
 
39
40
41
 
16
17
18
19
20
21
22
 
36
37
38
 
39
40
41
42
@@ -16,6 +16,7 @@
   import gtk  from tortoisehg.util.i18n import _ +from tortoisehg.util import hglib  from tortoisehg.hgtk import gtklib    def entry_dialog(parent, msg, visible=True, default='', respfunc=None): @@ -35,7 +36,7 @@
  entry.set_text(default or '')   entry.set_visibility(visible)   entry.set_activates_default(True) - lbl = gtk.Label(msg) + lbl = gtk.Label(hglib.toutf(msg))   lbl.set_alignment(0, 0.5)   dialog.vbox.pack_start(lbl, True, True, 6)   dialog.vbox.pack_start(entry, False, False, 6)