Pack the terminal&scrollbar boxes into a paned widget for resizing goodness

This commit is contained in:
Chris Jones 2006-11-09 11:29:11 -08:00
parent 5906085998
commit f11b8797f4
1 changed files with 9 additions and 3 deletions

View File

@ -100,9 +100,15 @@ if __name__ == '__main__':
box = gtk.HBox()
box.pack_start(terminal)
box.pack_start(scrollbar)
box.pack_start(terminal2)
box.pack_start(scrollbar2)
window.add(box)
box2 = gtk.HBox()
box2.pack_start(terminal2)
box2.pack_start(scrollbar2)
pane = gtk.HPaned()
pane.add1(box)
pane.add2(box2)
window.add(pane)
window.show_all()
gtk.main()