Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
gstbe: Fix error while seeking when buffering is active. Closes issue #…
  • Loading branch information
lazka committed Aug 20, 2014
1 parent 25b7218 commit 7ebda1a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion quodlibet/quodlibet/player/gstbe/player.py
Expand Up @@ -129,7 +129,8 @@ def get_state(self, *args, **kwargs):
# so call every time but ignore the result in the inhibit case
res = self.bin.get_state(*args, **kwargs)
if self._inhibit_play:
return self._wanted_state
return (Gst.StateChangeReturn.SUCCESS,
self._wanted_state, Gst.State.VOID_PENDING)
return res

def destroy(self):
Expand Down

0 comments on commit 7ebda1a

Please sign in to comment.