aboutsummaryrefslogtreecommitdiff
path: root/mytest.py
diff options
context:
space:
mode:
Diffstat (limited to 'mytest.py')
-rw-r--r--mytest.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/mytest.py b/mytest.py
index 93c42142..452dd3d7 100644
--- a/mytest.py
+++ b/mytest.py
@@ -173,8 +173,12 @@ class Session:
# when execBegin opened a new dialog, don't bother showing the old one.
if c == self.current_dialog and do_show:
- c.show()
-
+ # this is the first show() for each screen.
+ # screen.shown is already true, because that resembles the state
+ # ("not-yet-shown-but-will-be-shown") best, so c.show() would just do nothing.
+ # show(force=True) will show in any case.
+ c.show(force = True)
+
def execEnd(self, last=True):
assert self.in_exec
self.in_exec = False