X-Git-Url: http://code.vuplus.com/gitweb/?a=blobdiff_plain;f=lib%2Fpython%2FScreens%2FScreen.py;h=f0bf773d6a28a76418984bbad84811eba4835766;hb=ea7b9cc477258d0cd7a28ccfe96f5ec3781d21db;hp=2ba7342fb83480d193303027e221f8201a47fae6;hpb=51550aa81c726aedfa7159af0e67f8bcd5fb8a2f;p=vuplus_dvbapp diff --git a/lib/python/Screens/Screen.py b/lib/python/Screens/Screen.py index 2ba7342..f0bf773 100644 --- a/lib/python/Screens/Screen.py +++ b/lib/python/Screens/Screen.py @@ -9,11 +9,13 @@ from Components.GUIComponent import GUIComponent class Screen(dict, GUISkin): + False, SUSPEND_STOPS, SUSPEND_PAUSES = range(3) ALLOW_SUSPEND = False global_screen = None def __init__(self, session, parent = None): + dict.__init__(self) self.skinName = self.__class__.__name__ self.session = session self.parent = parent