From 5f5b1e087965b9403f3057819a4fca8afb21e538 Mon Sep 17 00:00:00 2001 From: June Tate-Gans Date: Sun, 2 May 2021 15:21:45 -0500 Subject: [PATCH] g13gui: bitwidgets: Make the buttonbar visible --- g13gui/g13gui/bitwidgets/screen.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/g13gui/g13gui/bitwidgets/screen.py b/g13gui/g13gui/bitwidgets/screen.py index 73d2134..c8570aa 100644 --- a/g13gui/g13gui/bitwidgets/screen.py +++ b/g13gui/g13gui/bitwidgets/screen.py @@ -13,8 +13,8 @@ class Screen(Widget): Widget.__init__(self) self._display = display self._buttonBar = ButtonBar() - - self.visible = True + self._buttonBar.show() + self.show() @property def buttonBar(self):