Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.3, 0.4rc1, and 0.4rc2

hggtk/hgemail: align labels of envelope fields

Changeset b5fc8cec07f9

Parent fce4f4d4fe97

by TK Soh

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

Change 1 of 3 Show Entire File hggtk/​hgemail.py Stacked
 
76
77
78
79
 
 
 
 
80
81
82
 
84
85
86
87
 
 
 
 
88
89
90
 
92
93
94
95
 
 
 
 
96
97
98
 
76
77
78
 
79
80
81
82
83
84
85
 
87
88
89
 
90
91
92
93
94
95
96
 
98
99
100
 
101
102
103
104
105
106
107
@@ -76,7 +76,10 @@
  hbox = gtk.HBox()   self._tolist = gtk.ListStore(str)   self._tobox = gtk.ComboBoxEntry(self._tolist, 0) - hbox.pack_start(gtk.Label('To:'), False, False, 4) + lbl = gtk.Label('To:') + lbl.set_property("width-chars", 5) + lbl.set_alignment(1.0, 0.5) + hbox.pack_start(lbl, False, False, 4)   hbox.pack_start(self._tobox, True, True, 4)   vbox.pack_start(hbox, False, False, 4)   @@ -84,7 +87,10 @@
  hbox = gtk.HBox()   self._cclist = gtk.ListStore(str)   self._ccbox = gtk.ComboBoxEntry(self._cclist, 0) - hbox.pack_start(gtk.Label('Cc:'), False, False, 4) + lbl = gtk.Label('Cc:') + lbl.set_property("width-chars", 5) + lbl.set_alignment(1.0, 0.5) + hbox.pack_start(lbl, False, False, 4)   hbox.pack_start(self._ccbox, True, True, 4)   vbox.pack_start(hbox, False, False, 4)   @@ -92,7 +98,10 @@
  hbox = gtk.HBox()   self._fromlist = gtk.ListStore(str)   self._frombox = gtk.ComboBoxEntry(self._fromlist, 0) - hbox.pack_start(gtk.Label('From:'), False, False, 4) + lbl = gtk.Label('From:') + lbl.set_property("width-chars", 5) + lbl.set_alignment(1.0, 0.5) + hbox.pack_start(lbl, False, False, 4)   hbox.pack_start(self._frombox, True, True, 4)   vbox.pack_start(hbox, False, False, 4)