aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens/InfoBar.py
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-12-01 08:41:25 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-12-01 08:41:25 +0000
commitc942b1c829bf49d77dcdb2bfda776e6288c99828 (patch)
tree2ba7c5b0d12db187ab555776583141e00c7f232d /lib/python/Screens/InfoBar.py
parent7663898c2a6f536b59965f8c1978f7d268bdfc13 (diff)
downloadenigma2-c942b1c829bf49d77dcdb2bfda776e6288c99828.tar.gz
enigma2-c942b1c829bf49d77dcdb2bfda776e6288c99828.zip
add blinking dish-picture if positioner is moving (we need a function which returns true when the positioner is moving for it to
work)
Diffstat (limited to 'lib/python/Screens/InfoBar.py')
-rw-r--r--lib/python/Screens/InfoBar.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/python/Screens/InfoBar.py b/lib/python/Screens/InfoBar.py
index 3ddb1c3c..45a0538b 100644
--- a/lib/python/Screens/InfoBar.py
+++ b/lib/python/Screens/InfoBar.py
@@ -12,7 +12,7 @@ from Tools.Notifications import AddNotificationWithCallback
from Screens.InfoBarGenerics import InfoBarVolumeControl, InfoBarShowHide, \
InfoBarPowerKey, InfoBarNumberZap, InfoBarChannelSelection, InfoBarMenu, \
InfoBarEPG, InfoBarEvent, InfoBarServiceName, InfoBarPVR, InfoBarInstantRecord, \
- InfoBarAudioSelection, InfoBarAdditionalInfo, InfoBarNotifications
+ InfoBarAudioSelection, InfoBarAdditionalInfo, InfoBarNotifications, InfoBarDish
from Screens.HelpMenu import HelpableScreen, HelpMenu
@@ -23,7 +23,7 @@ import time
class InfoBar(Screen, InfoBarVolumeControl, InfoBarShowHide, InfoBarPowerKey,
InfoBarNumberZap, InfoBarChannelSelection, InfoBarMenu, InfoBarEPG,
InfoBarEvent, InfoBarServiceName, InfoBarInstantRecord, InfoBarAudioSelection,
- HelpableScreen, InfoBarAdditionalInfo, InfoBarNotifications):
+ HelpableScreen, InfoBarAdditionalInfo, InfoBarNotifications, InfoBarDish):
def __init__(self, session):
Screen.__init__(self, session)
@@ -37,7 +37,7 @@ class InfoBar(Screen, InfoBarVolumeControl, InfoBarShowHide, InfoBarPowerKey,
InfoBarVolumeControl, InfoBarShowHide, InfoBarPowerKey, \
InfoBarNumberZap, InfoBarChannelSelection, InfoBarMenu, InfoBarEPG, \
InfoBarEvent, InfoBarServiceName, InfoBarInstantRecord, InfoBarAudioSelection, \
- InfoBarAdditionalInfo, InfoBarNotifications:
+ InfoBarAdditionalInfo, InfoBarNotifications, InfoBarDish:
x.__init__(self)
self.helpList.append((self["actions"], "InfobarActions", [("showMovies", "Watch a Movie...")]))