summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/wx/film_viewer.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/wx/film_viewer.cc b/src/wx/film_viewer.cc
index c17927ac5..a5371fcf0 100644
--- a/src/wx/film_viewer.cc
+++ b/src/wx/film_viewer.cc
@@ -570,6 +570,10 @@ FilmViewer::jump_to_selected_clicked ()
void
FilmViewer::seek (DCPTime t, bool accurate)
{
+ if (!_player) {
+ return;
+ }
+
_player->seek (t, accurate);
_last_seek_accurate = accurate;
get ();