serialcon: Hide scrollbar until there's something to scroll
This commit is contained in:
parent
10e199279d
commit
02f49be9e2
|
@ -376,6 +376,14 @@ class vmmSerialConsole(vmmGObject):
|
|||
self.box.append_page(self.error_label, Gtk.Label(""))
|
||||
self.box.show_all()
|
||||
|
||||
scrollbar.hide()
|
||||
scrollbar.get_adjustment().connect(
|
||||
"changed", self._scrollbar_adjustment_changed, scrollbar)
|
||||
|
||||
def _scrollbar_adjustment_changed(self, adjustment, scrollbar):
|
||||
scrollbar.set_visible(
|
||||
adjustment.get_upper() > adjustment.get_page_size())
|
||||
|
||||
def _cleanup(self):
|
||||
self.console.cleanup()
|
||||
self.console = None
|
||||
|
|
Loading…
Reference in New Issue