diff options
| author | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2005-12-06 22:34:37 +0000 |
|---|---|---|
| committer | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2005-12-06 22:34:37 +0000 |
| commit | 8c859d597bc88634e3e5f41d7ea800aae90d50fd (patch) | |
| tree | 739c055e63a83dbbc47dae8df8344f1a7424b4e6 /lib/python | |
| parent | 7290c1872d4f6ac37c8090e1cc2e95aeddf6e814 (diff) | |
| download | enigma2-8c859d597bc88634e3e5f41d7ea800aae90d50fd.tar.gz enigma2-8c859d597bc88634e3e5f41d7ea800aae90d50fd.zip | |
disable ugly dish-pixmap
Diffstat (limited to 'lib/python')
| -rw-r--r-- | lib/python/Screens/Dish.py | 3 | ||||
| -rw-r--r-- | lib/python/Screens/InfoBarGenerics.py | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/lib/python/Screens/Dish.py b/lib/python/Screens/Dish.py index 4c7e7472..1f5c391c 100644 --- a/lib/python/Screens/Dish.py +++ b/lib/python/Screens/Dish.py @@ -13,4 +13,5 @@ class Dish(Screen): self["transparent"] = Button("") self["Dishpixmap"] = BlinkingPixmapConditional() #self["Dishpixmap"] = Pixmap() - self["Dishpixmap"].setConnect(eDVBSatelliteEquipmentControl.getInstance().isRotorMoving) + self["Dishpixmap"].setConnect(lambda: False) + #self["Dishpixmap"].setConnect(eDVBSatelliteEquipmentControl.getInstance().isRotorMoving) diff --git a/lib/python/Screens/InfoBarGenerics.py b/lib/python/Screens/InfoBarGenerics.py index 85fab2c8..1b080d9b 100644 --- a/lib/python/Screens/InfoBarGenerics.py +++ b/lib/python/Screens/InfoBarGenerics.py @@ -94,7 +94,7 @@ class InfoBarVolumeControl: class InfoBarDish: def __init__(self): self.dishDialog = self.session.instantiateDialog(Dish) - self.onShown.append(self.dishDialog.instance.show) + self.onShown.append(self.dishDialog.instance.hide) class InfoBarShowHide: """ InfoBar show/hide control, accepts toggleShow and hide actions, might start |
