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