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

stable changeset: hide csinfo with separator on clear

Changeset b91879ee9ce2

Parent b525951171bc

by Yuki KODAMA

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

 
75
76
77
78
 
79
80
81
 
224
225
226
 
227
228
229
230
231
232
 
233
234
235
 
520
521
522
523
524
 
 
 
 
 
 
525
526
527
 
75
76
77
 
78
79
80
81
 
224
225
226
227
228
229
230
231
232
233
234
235
236
237
 
522
523
524
 
 
525
526
527
528
529
530
531
532
533
@@ -75,7 +75,7 @@
  def clear(self):   self._buffer.set_text('')   self._filelist.clear() - self.summarypanel.hide() + self.summarybox.hide()     def diff_other_parent(self):   return self.other_parent_checkbutton.get_active() @@ -224,12 +224,14 @@
    def generate_change_header(self):   self.summarypanel.update(self.currev, self.csetstyle) + self.summarybox.show()     desc = self.summarypanel.get_data('desc')   self.set_commitlog(desc)     def generate_patch_header(self):   self.summarypanel.update(self.curpatch, self.patchstyle) + self.summarybox.show()     desc = self.summarypanel.get_data('desc')   self.set_commitlog(desc) @@ -520,8 +522,12 @@
  'user', 'dateage', 'parents'),   selectable=True)   self.summarypanel = csinfo.create(self.repo, custom=custom) - details_box.pack_start(self.summarypanel, False, False) - details_box.pack_start(gtk.HSeparator(), False, False) + + # summary box (summarypanel + separator) + self.summarybox = gtk.VBox() + details_box.pack_start(self.summarybox, False, False) + self.summarybox.pack_start(self.summarypanel, False, False) + self.summarybox.pack_start(gtk.HSeparator(), False, False)     ## changeset diff   details_text = gtk.TextView()