MPlayer has a quite weird way of handling the volume
This commit is contained in:
parent
535c4bbc17
commit
3a5d7c7cba
1 changed files with 2 additions and 2 deletions
|
@ -253,12 +253,12 @@ class MediaMplayerPlugin(MediaPlugin):
|
||||||
self._exec('quit')
|
self._exec('quit')
|
||||||
|
|
||||||
@action
|
@action
|
||||||
def voldown(self, step=10.0):
|
def voldown(self, step=100.0):
|
||||||
""" Volume down by (default: 10)% """
|
""" Volume down by (default: 10)% """
|
||||||
return self.step_property('volume', -step)
|
return self.step_property('volume', -step)
|
||||||
|
|
||||||
@action
|
@action
|
||||||
def volup(self, step=10.0):
|
def volup(self, step=100.0):
|
||||||
""" Volume up by (default: 10)% """
|
""" Volume up by (default: 10)% """
|
||||||
return self.step_property('volume', step)
|
return self.step_property('volume', step)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue