aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens/PVRState.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python/Screens/PVRState.py')
-rw-r--r--lib/python/Screens/PVRState.py9
1 files changed, 8 insertions, 1 deletions
diff --git a/lib/python/Screens/PVRState.py b/lib/python/Screens/PVRState.py
index 6ec0b0be..051d6288 100644
--- a/lib/python/Screens/PVRState.py
+++ b/lib/python/Screens/PVRState.py
@@ -1,6 +1,7 @@
from Screen import Screen
from Components.Label import Label
+from Components.ServicePosition import ServicePosition
from enigma import *
@@ -8,4 +9,10 @@ class PVRState(Screen):
def __init__(self, session):
Screen.__init__(self, session)
- self["state"] = Label(text="blub")
+ self["state"] = Label(text="")
+
+class TimeshiftState(PVRState):
+ def __init__(self, session):
+ PVRState.__init__(self, session)
+
+ self["timeshift"] = ServicePosition(self.session.nav, ServicePosition.TYPE_RELATIVE)