mirror of
https://github.com/ankitects/anki.git
synced 2025-09-23 08:22:24 -04:00
make sure to call hideOrShow() last
This commit is contained in:
parent
1261bb185c
commit
329caf7f96
1 changed files with 1 additions and 1 deletions
|
@ -68,12 +68,12 @@ class StatusView(object):
|
||||||
self.remText.setShown(shown)
|
self.remText.setShown(shown)
|
||||||
self.sep1.setShown(shown)
|
self.sep1.setShown(shown)
|
||||||
self.sep2.setShown(shown)
|
self.sep2.setShown(shown)
|
||||||
self.statusbar.hideOrShow()
|
|
||||||
# timer has a separate option
|
# timer has a separate option
|
||||||
if not self.main.config['showTimer']:
|
if not self.main.config['showTimer']:
|
||||||
shown = False
|
shown = False
|
||||||
self.timer.setShown(shown)
|
self.timer.setShown(shown)
|
||||||
self.sep3.setShown(shown)
|
self.sep3.setShown(shown)
|
||||||
|
self.statusbar.hideOrShow()
|
||||||
|
|
||||||
# Setup and teardown
|
# Setup and teardown
|
||||||
##########################################################################
|
##########################################################################
|
||||||
|
|
Loading…
Reference in a new issue