aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens/UnhandledKey.py
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2009-12-30 17:35:27 +0100
committerghost <andreas.monzner@multimedia-labs.de>2009-12-30 17:35:27 +0100
commit9a387d949dc2188928fbc19e6cf73da0041dd102 (patch)
treea26478a76d7bcd40d4deb29ef7a53e4ef93c79a9 /lib/python/Screens/UnhandledKey.py
parent699e95c18614b5e6c659a82ae955be6c3920f6e5 (diff)
parent4e67809b69b2688c138a47cd0d19337c054c0f6f (diff)
downloadenigma2-9a387d949dc2188928fbc19e6cf73da0041dd102.tar.gz
enigma2-9a387d949dc2188928fbc19e6cf73da0041dd102.zip
Merge branch 'bug_293_indicate_unhandled_key' into experimental
Diffstat (limited to 'lib/python/Screens/UnhandledKey.py')
-rw-r--r--lib/python/Screens/UnhandledKey.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/python/Screens/UnhandledKey.py b/lib/python/Screens/UnhandledKey.py
new file mode 100644
index 00000000..63bfed5b
--- /dev/null
+++ b/lib/python/Screens/UnhandledKey.py
@@ -0,0 +1,7 @@
+from Screen import Screen
+from Components.Pixmap import Pixmap
+
+class UnhandledKey(Screen):
+ def __init__(self, session):
+ Screen.__init__(self, session)
+ self["UnhandledKeyPixmap"] = Pixmap()