From 329caf7f965d22474d57f4647bb4effdb7380be5 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Wed, 6 May 2009 15:24:28 +0900 Subject: [PATCH] make sure to call hideOrShow() last --- ankiqt/ui/status.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ankiqt/ui/status.py b/ankiqt/ui/status.py index cee810dcf..2c692642e 100644 --- a/ankiqt/ui/status.py +++ b/ankiqt/ui/status.py @@ -68,12 +68,12 @@ class StatusView(object): self.remText.setShown(shown) self.sep1.setShown(shown) self.sep2.setShown(shown) - self.statusbar.hideOrShow() # timer has a separate option if not self.main.config['showTimer']: shown = False self.timer.setShown(shown) self.sep3.setShown(shown) + self.statusbar.hideOrShow() # Setup and teardown ##########################################################################