Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.0, 1.0.1, and 1.0.2

commit: remove doubled bottom separator when hide parent bar

Changeset 5778c498f81e

Parent 46823cd21ca3

by Yuki KODAMA

Changes to one file · Browse files at 5778c498f81e Showing diff from parent 46823cd21ca3 Diff from another changeset...

 
471
472
473
474
475
 
 
 
476
477
478
 
489
490
491
492
 
493
494
495
496
497
498
499
 
 
 
 
 
500
501
502
 
471
472
473
 
 
474
475
476
477
478
479
 
490
491
492
 
493
494
495
496
 
 
 
 
497
498
499
500
501
502
503
504
@@ -471,8 +471,9 @@
  botbox.pack_start(status_body)     # parent changeset info - parents_vbox = gtk.VBox(spacing=1) - self.parents_frame = parents_vbox + pframe = gtk.VBox() + self.parents_frame = pframe + pvbox = gtk.VBox(spacing=1)   style = csinfo.labelstyle(contents=('%(athead)s ',   _('Parent: %(rev)s'), ' %(branch)s', ' %(tags)s',   ' %(summary)s'), selectable=True) @@ -489,14 +490,15 @@
  factory = csinfo.factory(self.repo, custom, style)   def add_parent():   label = factory() - parents_vbox.pack_start(label, False, False) + pvbox.pack_start(label, False, False)   return label   self.parent1_label = add_parent()   self.parent2_label = add_parent() - parents_hbox = gtk.HBox() - parents_hbox.pack_start(parents_vbox, False, False, 5) - botbox.pack_start(parents_hbox, False, False, 2) - botbox.pack_start(gtk.HSeparator(), False, False) + phbox = gtk.HBox() + phbox.pack_start(pvbox, False, False, 5) + pframe.pack_start(phbox, False, False) + pframe.pack_start(gtk.HSeparator(), False, False) + botbox.pack_start(pframe, False, False, 2)     self.vpaned = gtk.VPaned()   self.vpaned.pack1(midpane, shrink=False)