diff options
| author | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2005-11-24 02:09:47 +0000 |
|---|---|---|
| committer | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2005-11-24 02:09:47 +0000 |
| commit | b25820a32e175df5c7ea629628026ae7ebb7ec18 (patch) | |
| tree | bcecea0713b9885d1318a17cb5e4c6605e7fad84 /lib/python/Screens | |
| parent | 7abb7f5343bc8f446b728af8e66e5fdb71a587e9 (diff) | |
| download | enigma2-b25820a32e175df5c7ea629628026ae7ebb7ec18.tar.gz enigma2-b25820a32e175df5c7ea629628026ae7ebb7ec18.zip | |
add color buttons to epgselection
Diffstat (limited to 'lib/python/Screens')
| -rw-r--r-- | lib/python/Screens/EpgSelection.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/python/Screens/EpgSelection.py b/lib/python/Screens/EpgSelection.py index def51d49..db8be2e1 100644 --- a/lib/python/Screens/EpgSelection.py +++ b/lib/python/Screens/EpgSelection.py @@ -21,6 +21,11 @@ class EPGSelection(Screen): class ChannelActionMap(ActionMap): def action(self, contexts, action): ActionMap.action(self, contexts, action) + + self["key_red"] = Button("") + self["key_green"] = Button(_("Add timer")) + self["key_yellow"] = Button("") + self["key_blue"] = Button("") self["actions"] = ChannelActionMap(["EPGSelectActions", "OkCancelActions"], { |
