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

hggtk/synch: layout improvements in expander

Changeset a0ee895c79d9

Parent 66df8be3b1bf

by Steve Borho

Changes to one file · Browse files at a0ee895c79d9 Showing diff from parent 66df8be3b1bf Diff from another changeset...

Change 1 of 2 Show Entire File hggtk/​synch.py Stacked
 
138
139
140
141
 
142
143
144
 
146
147
148
149
150
151
 
 
 
152
153
 
154
155
156
 
138
139
140
 
141
142
143
144
 
146
147
148
 
 
 
149
150
151
152
 
153
154
155
156
@@ -138,7 +138,7 @@
  hbox = gtk.HBox()   expander.add(hbox)   self._reventry = gtk.Entry() - self._force = gtk.CheckButton('Force') + self._force = gtk.CheckButton('Force pull or push')   frame = gtk.Frame('Incoming/Outgoing')   self._showpatch = gtk.CheckButton('Show Patches')   self._newestfirst = gtk.CheckButton('Show Newest First') @@ -146,11 +146,11 @@
    revvbox = gtk.VBox()   revhbox = gtk.HBox() - revhbox.pack_start(gtk.Label('Rev:'), False, False, 2) - revhbox.pack_start(self._reventry, False, False, 2) - revvbox.pack_start(revhbox) + revhbox.pack_start(gtk.Label('Target Revision:'), False, False, 2) + revhbox.pack_start(self._reventry, True, True, 2) + revvbox.pack_start(revhbox, True, True, 8)   revvbox.pack_start(self._force, False, False, 2) - hbox.pack_start(revvbox, False, False, 2) + hbox.pack_start(revvbox, True, True, 4)   hbox.pack_start(frame, False, False, 2)     hbox = gtk.HBox()