aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Screens/InfoBar.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/python/Screens/InfoBar.py b/lib/python/Screens/InfoBar.py
index 9702eed7..ef44ef3e 100644
--- a/lib/python/Screens/InfoBar.py
+++ b/lib/python/Screens/InfoBar.py
@@ -120,8 +120,7 @@ class InfoBar(Screen):
def volUp(self):
eDVBVolumecontrol.getInstance().volumeUp()
self.volumeDialog.instance.show()
- # FIXME: help wanted :)
- self.volumeDialog.instance.setValue(eDVBVolumecontrol.getInstance().getVolume())
+ self.volumeDialog.setValue(eDVBVolumecontrol.getInstance().getVolume())
self.hideVolTimer = eTimer()
self.hideVolTimer.timeout.get().append(self.volHide)
self.hideVolTimer.start(3000)
@@ -129,7 +128,6 @@ class InfoBar(Screen):
def volDown(self):
eDVBVolumecontrol.getInstance().volumeDown()
self.volumeDialog.instance.show()
- # FIXME: help wanted :)
self.volumeDialog.setValue(eDVBVolumecontrol.getInstance().getVolume())
self.hideVolTimer = eTimer()
self.hideVolTimer.timeout.get().append(self.volHide)