X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/0ba15307e275a40042a9aa7ac0f33aac7c14e63f..e9b37cc9582c76462771c5970a57c036c5533142:/lib/python/Screens/Screen.py diff --git a/lib/python/Screens/Screen.py b/lib/python/Screens/Screen.py index 6e5ac21d..13e31d67 100644 --- a/lib/python/Screens/Screen.py +++ b/lib/python/Screens/Screen.py @@ -13,6 +13,7 @@ class Screen(dict, HTMLSkin, GUISkin): self.onClose = [ ] self.onExecBegin = [ ] + self.onShown = [ ] # in order to support screens *without* a help, # we need the list in every screen. how ironic. @@ -25,6 +26,9 @@ class Screen(dict, HTMLSkin, GUISkin): # self.session = session for (name, val) in self.items(): val.execBegin() + + for x in self.onShown: + x() def execEnd(self): for (name, val) in self.items():