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

stable taskbarui: adjust spacings of widget

Changeset b29465b4d931

Parent a3be7b446fca

by Yuki KODAMA

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

 
33
34
35
 
36
37
38
 
170
171
172
 
 
 
173
174
175
 
176
177
178
 
179
180
181
 
185
186
187
 
188
189
190
 
33
34
35
36
37
38
39
 
171
172
173
174
175
176
177
178
 
179
180
181
182
183
184
185
186
 
190
191
192
193
194
195
196
@@ -33,6 +33,7 @@
  close = gtk.Button(_('Close'))     vbox = gtk.VBox() + vbox.set_border_width(5)   self.add(vbox)     # Create a new notebook, place the position of the tabs @@ -170,12 +171,16 @@
  accelgroup = gtk.AccelGroup()   self.add_accel_group(accelgroup)   + # Padding + vbox.pack_start(gtk.HBox(), False, False, 3) +   # Bottom buttons   bbox = gtk.HBox() - vbox.pack_start(bbox, False, False, 2) + vbox.pack_start(bbox, False, False)     lefthbbox = gtk.HButtonBox()   lefthbbox.set_layout(gtk.BUTTONBOX_START) + lefthbbox.set_spacing(6)   bbox.pack_start(lefthbbox, False, False)     about.connect('clicked', self.about) @@ -185,6 +190,7 @@
    righthbbox = gtk.HButtonBox()   righthbbox.set_layout(gtk.BUTTONBOX_END) + righthbbox.set_spacing(6)   bbox.pack_start(righthbbox, False, False)     self.apply.connect('clicked', self.apply_clicked)