diff options
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() |
