diff options
| author | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2006-01-18 20:21:53 +0000 |
|---|---|---|
| committer | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2006-01-18 20:21:53 +0000 |
| commit | 124d18766f09faf0209eeb052c8c8a865e672eb3 (patch) | |
| tree | 30f5876a15594988ac8a4dd185a20a038ff265c5 /lib/python/Screens | |
| parent | 4b1d2e8d5bf0f73579dc1b385a4d66316b62c418 (diff) | |
| download | enigma2-124d18766f09faf0209eeb052c8c8a865e672eb3.tar.gz enigma2-124d18766f09faf0209eeb052c8c8a865e672eb3.zip | |
reenable the blinking dish on positioner movement (can be enabled in the usage setup menu)
dish designed by juergen - thanx for that
Diffstat (limited to 'lib/python/Screens')
| -rw-r--r-- | lib/python/Screens/Dish.py | 7 | ||||
| -rw-r--r-- | lib/python/Screens/InfoBarGenerics.py | 2 |
2 files changed, 6 insertions, 3 deletions
diff --git a/lib/python/Screens/Dish.py b/lib/python/Screens/Dish.py index 1f5c391c..c8e9b6c7 100644 --- a/lib/python/Screens/Dish.py +++ b/lib/python/Screens/Dish.py @@ -3,6 +3,7 @@ from Screen import Screen from Components.BlinkingPixmap import BlinkingPixmapConditional from Components.Pixmap import Pixmap from Components.Button import Button +from Components.config import config, currentConfigSelectionElement from enigma import * @@ -13,5 +14,7 @@ class Dish(Screen): self["transparent"] = Button("") self["Dishpixmap"] = BlinkingPixmapConditional() #self["Dishpixmap"] = Pixmap() - self["Dishpixmap"].setConnect(lambda: False) - #self["Dishpixmap"].setConnect(eDVBSatelliteEquipmentControl.getInstance().isRotorMoving) + if currentConfigSelectionElement(config.usage.showdish) == "no": + self["Dishpixmap"].setConnect(lambda: False) + else: + self["Dishpixmap"].setConnect(eDVBSatelliteEquipmentControl.getInstance().isRotorMoving) diff --git a/lib/python/Screens/InfoBarGenerics.py b/lib/python/Screens/InfoBarGenerics.py index c3b1a086..fc19c806 100644 --- a/lib/python/Screens/InfoBarGenerics.py +++ b/lib/python/Screens/InfoBarGenerics.py @@ -39,7 +39,7 @@ from Menu import MainMenu, mdom class InfoBarDish: def __init__(self): self.dishDialog = self.session.instantiateDialog(Dish) - self.onShown.append(self.dishDialog.instance.hide) + self.onShown.append(self.dishDialog.instance.show) class InfoBarShowHide: """ InfoBar show/hide control, accepts toggleShow and hide actions, might start |
