aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2007-01-12 01:56:51 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2007-01-12 01:56:51 +0000
commit0dbb36049c5f14bbabc4596448dc148f108a2137 (patch)
treeb5783f3eb964f5bb1c55f1ad03793bcb491a445c /lib
parent39627668ca36cecbc78ec5f677061f128957b550 (diff)
downloadenigma2-0dbb36049c5f14bbabc4596448dc148f108a2137.tar.gz
enigma2-0dbb36049c5f14bbabc4596448dc148f108a2137.zip
get rid of unneede global keywords
fix non working shutdown after timerevent when the box is in standby
Diffstat (limited to 'lib')
-rw-r--r--lib/python/Screens/InfoBarGenerics.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/python/Screens/InfoBarGenerics.py b/lib/python/Screens/InfoBarGenerics.py
index 08ccade1..31108c8a 100644
--- a/lib/python/Screens/InfoBarGenerics.py
+++ b/lib/python/Screens/InfoBarGenerics.py
@@ -1609,6 +1609,11 @@ class InfoBarNotifications:
Notifications.notifications = Notifications.notifications[1:]
cb = n[0]
+
+ if n[3].has_key("onSessionOpenCallback"):
+ n[3]["onSessionOpenCallback"]()
+ del n[3]["onSessionOpenCallback"]
+
if cb is not None:
dlg = self.session.openWithCallback(cb, n[1], *n[2], **n[3])
else: