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

thgconfig: put entries under gtk.Expander

Changeset bdb13068d7d5

Parent 5ebafd520ad9

by Yuki KODAMA

Changes to one file · Browse files at bdb13068d7d5 Showing diff from parent 5ebafd520ad9 Diff from another changeset...

 
226
227
228
 
 
229
230
231
 
262
263
264
265
 
 
266
267
268
269
 
270
271
272
 
226
227
228
229
230
231
232
233
 
264
265
266
 
267
268
269
270
271
 
272
273
274
275
@@ -226,6 +226,8 @@
  self.connect('response', self.response)   self.connect('key-press-event', self.key_press)   self.set_title(_('Edit remote repository path')) + self.set_has_separator(False) + self.set_resizable(False)   self.newpath, self.newalias = None, None   self.list = list   @@ -262,11 +264,12 @@
  toptable.attach(self.entries['URL'][1], 0, 1, 1, 2, gtk.FILL, 0, 4, 2)   toptable.attach(self.entries['URL'][0], 1, 2, 1, 2, gtk.FILL|gtk.EXPAND, 0, 4, 2)   - self.vbox.pack_start(gtk.HSeparator(), False, False, 2) + expander = gtk.Expander(_('URL Details')) + self.vbox.pack_start(expander, True, True, 2)     # table for separated entries   entrytable = gtk.Table(5, 2) - self.vbox.pack_start(entrytable, False, False, 2) + expander.add(entrytable)     ## path type   typelabel = gtk.Label(_('Type'))