aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens/UnhandledKey.py
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2009-12-30 17:11:58 +0100
committerthedoc <thedoc@atom.(none)>2010-01-01 15:25:47 +0100
commitd711c0e93592fa1e1df0fde808fe2bed39687421 (patch)
treedeb42d56031bbeea23ab3120bcac459da9dd2410 /lib/python/Screens/UnhandledKey.py
parenteaa0490b6cbc0a6db1482e744f988bd5a28f7944 (diff)
downloadenigma2-d711c0e93592fa1e1df0fde808fe2bed39687421.tar.gz
enigma2-d711c0e93592fa1e1df0fde808fe2bed39687421.zip
show a short symbol when a unhandled key is pressed
this fixes bug #293
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()