Stop the scrollbar from taking up more space than it renders in
This commit is contained in:
parent
f11b8797f4
commit
dd3658a196
|
@ -99,11 +99,11 @@ if __name__ == '__main__':
|
||||||
|
|
||||||
box = gtk.HBox()
|
box = gtk.HBox()
|
||||||
box.pack_start(terminal)
|
box.pack_start(terminal)
|
||||||
box.pack_start(scrollbar)
|
box.pack_start(scrollbar, False)
|
||||||
|
|
||||||
box2 = gtk.HBox()
|
box2 = gtk.HBox()
|
||||||
box2.pack_start(terminal2)
|
box2.pack_start(terminal2)
|
||||||
box2.pack_start(scrollbar2)
|
box2.pack_start(scrollbar2, False)
|
||||||
|
|
||||||
pane = gtk.HPaned()
|
pane = gtk.HPaned()
|
||||||
pane.add1(box)
|
pane.add1(box)
|
||||||
|
|
Loading…
Reference in New Issue