aboutsummaryrefslogtreecommitdiff
path: root/mytest.py
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2007-04-24 13:07:43 +0000
committerFelix Domke <tmbinc@elitedvb.net>2007-04-24 13:07:43 +0000
commit242c6b39353c18564993022d46560e0d29c6526b (patch)
treefce3e1830b56095c65005699e31c11311333ed10 /mytest.py
parent6e15b45a8548265f1302b00630453f14ae4c786a (diff)
downloadenigma2-242c6b39353c18564993022d46560e0d29c6526b.tar.gz
enigma2-242c6b39353c18564993022d46560e0d29c6526b.zip
better (and more correct) fix
Diffstat (limited to 'mytest.py')
-rw-r--r--mytest.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/mytest.py b/mytest.py
index 452dd3d7..8d8036b9 100644
--- a/mytest.py
+++ b/mytest.py
@@ -173,11 +173,7 @@ class Session:
# when execBegin opened a new dialog, don't bother showing the old one.
if c == self.current_dialog and do_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)
+ c.show()
def execEnd(self, last=True):
assert self.in_exec