diff options
| author | Fraxinas <andreas.frisch@multimedia-labs.de> | 2009-08-04 13:26:48 +0200 |
|---|---|---|
| committer | Fraxinas <andreas.frisch@multimedia-labs.de> | 2009-08-04 13:26:48 +0200 |
| commit | bb2800462a81afbcfce36fa15d90808d13eae55b (patch) | |
| tree | b30fae73345441798c1d65c366f7799468997d44 /lib/python/Screens/Screen.py | |
| parent | d94506110fbfebcd3f49546c2403b5448589362a (diff) | |
| download | enigma2-bb2800462a81afbcfce36fa15d90808d13eae55b.tar.gz enigma2-bb2800462a81afbcfce36fa15d90808d13eae55b.zip | |
allow two different behaviours when going into resume: SUSPEND_STOPS (default as usual) and new SUSPEND_PAUSES (introduced for dvd player)
Diffstat (limited to 'lib/python/Screens/Screen.py')
| -rw-r--r-- | lib/python/Screens/Screen.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/python/Screens/Screen.py b/lib/python/Screens/Screen.py index 2ba7342f..7ac7841c 100644 --- a/lib/python/Screens/Screen.py +++ b/lib/python/Screens/Screen.py @@ -9,6 +9,7 @@ from Components.GUIComponent import GUIComponent class Screen(dict, GUISkin): + False, SUSPEND_STOPS, SUSPEND_PAUSES = range(3) ALLOW_SUSPEND = False global_screen = None |
