Skip to content

Commit

Permalink
Merge pull request kivy#1893 from Zen-CODE/videoplayer_fix
Browse files Browse the repository at this point in the history
VideoPlayer not responding to source change
  • Loading branch information
akshayaurora committed Feb 17, 2014
2 parents 49ee4ec + 7333031 commit 31990c5
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions kivy/uix/videoplayer.py
Original file line number Diff line number Diff line change
Expand Up @@ -480,6 +480,8 @@ def on_source(self, instance, value):
if self._video is not None:
self._video.unload()
self._video = None
if value:
self._trigger_video_load()

def _load_thumbnail(self):
if not self.container:
Expand Down

0 comments on commit 31990c5

Please sign in to comment.