diff options
| author | ghost <andreas.monzner@multimedia-labs.de> | 2009-12-30 17:11:58 +0100 |
|---|---|---|
| committer | ghost <andreas.monzner@multimedia-labs.de> | 2009-12-30 17:11:58 +0100 |
| commit | 148af18dacd5f36aa785277d11126d03118e9437 (patch) | |
| tree | a5cb169273e5d287e1b0f599aaf901e8b070b1be /lib/python/Screens/UnhandledKey.py | |
| parent | a913fcf03e60167b0cb05a47bbfb98d623337682 (diff) | |
| download | enigma2-148af18dacd5f36aa785277d11126d03118e9437.tar.gz enigma2-148af18dacd5f36aa785277d11126d03118e9437.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.py | 7 |
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() |
