From 2c15dca8aef39a4f75286ae57757efb31bbf926b Mon Sep 17 00:00:00 2001 From: Felix Domke Date: Thu, 26 Jan 2006 13:41:46 +0000 Subject: add pvr state window --- lib/python/Screens/PVRState.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 lib/python/Screens/PVRState.py (limited to 'lib/python/Screens/PVRState.py') diff --git a/lib/python/Screens/PVRState.py b/lib/python/Screens/PVRState.py new file mode 100644 index 00000000..6ec0b0be --- /dev/null +++ b/lib/python/Screens/PVRState.py @@ -0,0 +1,11 @@ +from Screen import Screen + +from Components.Label import Label + +from enigma import * + +class PVRState(Screen): + def __init__(self, session): + Screen.__init__(self, session) + + self["state"] = Label(text="blub") -- cgit v1.2.3