aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Screens/InfoBarGenerics.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/python/Screens/InfoBarGenerics.py b/lib/python/Screens/InfoBarGenerics.py
index c01cd17d..922f8ab5 100644
--- a/lib/python/Screens/InfoBarGenerics.py
+++ b/lib/python/Screens/InfoBarGenerics.py
@@ -537,7 +537,10 @@ class InfoBarPVR:
self.seekbase = seekable.getPlayPosition()[1] / 90
def pauseService(self):
- self.setSeekState(self.SEEK_STATE_PAUSE);
+ if (self.seekstate == self.SEEK_STATE_PAUSE):
+ self.unPauseService()
+ else:
+ self.setSeekState(self.SEEK_STATE_PAUSE);
def unPauseService(self):
self.setSeekState(self.SEEK_STATE_PLAY);