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

histdetails: add frame

Changeset cc169e9c4b14

Parent 526c75476860

by Adrian Buehlmann

Changes to one file · Browse files at cc169e9c4b14 Showing diff from parent 526c75476860 Diff from another changeset...

 
36
37
38
39
40
 
 
 
41
42
43
44
 
45
46
47
48
 
 
49
50
51
 
71
72
73
 
 
 
74
75
76
 
77
78
79
 
83
84
85
86
 
87
88
89
 
36
37
38
 
 
39
40
41
42
43
44
 
45
46
47
48
 
49
50
51
52
53
 
73
74
75
76
77
78
79
80
 
81
82
83
84
 
88
89
90
 
91
92
93
94
@@ -36,16 +36,18 @@
    hbox = gtk.HBox()   lb = gtk.Label(_('Columns') + ':') - hbox.pack_start(lb, False, False, 4) - self.vbox.pack_start(hbox, False, False, 4) + hbox.pack_start(lb, False, False, 6) + self.vbox.pack_start(gtk.HBox(), False, False, 3) + self.vbox.pack_start(hbox, False, False)     mainhbox = gtk.HBox()   self.vbox.pack_start(mainhbox) - +   leftvbox = gtk.VBox()   rightvbox = gtk.VBox()   mainhbox.pack_start(leftvbox, True, True) - mainhbox.pack_start(rightvbox, False, False) + mainhbox.pack_start(gtk.VBox(), False, False, 0) + mainhbox.pack_start(rightvbox, False, False, 4)     tv = self.tv = gtk.TreeView(model)   tv.set_headers_visible(False) @@ -71,9 +73,12 @@
  toggled(None, path)   tv.connect('row-activated', activated)   + frm = gtk.Frame() + frm.add(tv) +   vbox = gtk.VBox()   vbox.set_border_width(4) - vbox.pack_start(tv) + vbox.pack_start(frm)     leftvbox.pack_start(vbox, True, True)   @@ -83,7 +88,7 @@
  self.down_button = gtk.Button(_('Move Down'))   self.down_button.connect('clicked', self.down_clicked)   - rightvbox.pack_start(self.up_button, False, False) + rightvbox.pack_start(self.up_button, False, False, 2)   rightvbox.pack_start(self.down_button, False, False, 4)     self.show_all()