aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens/Screen.py
diff options
context:
space:
mode:
authorFraxinas <andreas.frisch@multimedia-labs.de>2009-08-04 13:26:48 +0200
committerFraxinas <andreas.frisch@multimedia-labs.de>2009-08-04 13:26:48 +0200
commitbb2800462a81afbcfce36fa15d90808d13eae55b (patch)
treeb30fae73345441798c1d65c366f7799468997d44 /lib/python/Screens/Screen.py
parentd94506110fbfebcd3f49546c2403b5448589362a (diff)
downloadenigma2-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.py1
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