Fixes scrollbar initial state not being set

This commit is contained in:
Stephen Boddy 2016-11-30 02:43:40 +01:00
parent b7e6b1026d
commit cab9a1adf9
1 changed files with 1 additions and 0 deletions

View File

@ -243,6 +243,7 @@ class Terminal(gtk.VBox):
terminalbox = gtk.HBox()
self.scrollbar = gtk.VScrollbar(self.vte.get_adjustment())
self.scrollbar.set_no_show_all(True)
terminalbox.pack_start(self.vte, True, True, 0)
terminalbox.pack_start(self.scrollbar, False, True, 0)