forked from platypush/platypush
Forgot a couple of selfs
This commit is contained in:
parent
c184356f67
commit
7c55848651
1 changed files with 2 additions and 2 deletions
|
@ -33,12 +33,12 @@ class VideoOmxplayerPlugin(Plugin):
|
||||||
|
|
||||||
def voldown(self):
|
def voldown(self):
|
||||||
if self.player:
|
if self.player:
|
||||||
self.player.set_volume(max(-6000, player.set_volume()-1000))
|
self.player.set_volume(max(-6000, self.player.set_volume()-1000))
|
||||||
return self.status()
|
return self.status()
|
||||||
|
|
||||||
def volup(self):
|
def volup(self):
|
||||||
if self.player:
|
if self.player:
|
||||||
player.set_volume(min(0, player.volume()+1000))
|
self.player.set_volume(min(0, self.player.volume()+1000))
|
||||||
return self.status()
|
return self.status()
|
||||||
|
|
||||||
def back(self):
|
def back(self):
|
||||||
|
|
Loading…
Reference in a new issue