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 commit: add padding to the left of parent bar

Changeset ad075480ec4a

Parent dfa112c606a0

by Yuki KODAMA

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

 
400
401
402
403
404
 
 
 
 
405
406
407
 
400
401
402
 
 
403
404
405
406
407
408
409
@@ -400,8 +400,10 @@
  return label   self.parent1_label = add_parent()   self.parent2_label = add_parent() - parents_vbox.pack_start(gtk.HSeparator()) - vbox2.pack_start(parents_vbox, False, False) + parents_hbox = gtk.HBox() + parents_hbox.pack_start(parents_vbox, False, False, 5) + vbox2.pack_start(parents_hbox, False, False, 2) + vbox2.pack_start(gtk.HSeparator(), False, False)     self.vpaned = gtk.VPaned()   self.vpaned.pack1(vbox, shrink=False)