Stop the scrollbar from taking up more space than it renders in

This commit is contained in:
Chris Jones 2006-11-09 11:30:02 -08:00
parent f11b8797f4
commit dd3658a196
1 changed files with 2 additions and 2 deletions

View File

@ -99,11 +99,11 @@ if __name__ == '__main__':
box = gtk.HBox()
box.pack_start(terminal)
box.pack_start(scrollbar)
box.pack_start(scrollbar, False)
box2 = gtk.HBox()
box2.pack_start(terminal2)
box2.pack_start(scrollbar2)
box2.pack_start(scrollbar2, False)
pane = gtk.HPaned()
pane.add1(box)