show a short symbol when a unhandled key is pressed
[enigma2.git] / lib / python / Screens / UnhandledKey.py
1 from Screen import Screen
2 from Components.Pixmap import Pixmap
3
4 class UnhandledKey(Screen):
5         def __init__(self, session):
6                 Screen.__init__(self, session)
7                 self["UnhandledKeyPixmap"] = Pixmap()