Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.6, 0.7, and 0.7.1

hggtk: left-justify prompt message in entry dialog

Changeset 2d6ba604344b

Parent f905b1ec5679

by TK Soh

Changes to one file · Browse files at 2d6ba604344b Showing diff from parent f905b1ec5679 Diff from another changeset...

Change 1 of 1 Show Entire File hggtk/​dialog.py Stacked
 
63
64
65
66
 
 
 
67
68
69
 
63
64
65
 
66
67
68
69
70
71
@@ -63,7 +63,9 @@
  entry.set_text(default or '')   entry.set_visibility(visible)   entry.set_activates_default(True) - dialog.vbox.pack_start(gtk.Label(msg), True, True, 6) + lbl = gtk.Label(msg) + lbl.set_alignment(0, 0.5) + dialog.vbox.pack_start(lbl, True, True, 6)   dialog.vbox.pack_start(entry, False, False, 6)   dialog.set_default_response(gtk.RESPONSE_OK)   dialog.show_all()