summaryrefslogtreecommitdiff
path: root/src/wx/film_viewer.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/wx/film_viewer.cc')
-rw-r--r--src/wx/film_viewer.cc4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/wx/film_viewer.cc b/src/wx/film_viewer.cc
index 0fb5058f3..3b6ea5b39 100644
--- a/src/wx/film_viewer.cc
+++ b/src/wx/film_viewer.cc
@@ -88,7 +88,6 @@ FilmViewer::FilmViewer (wxWindow* p, bool outline_content, bool jump_to_selected
, _play_button (new wxToggleButton (this, wxID_ANY, _("Play")))
, _coalesce_player_changes (false)
, _pending_player_change (false)
- , _last_seek_accurate (true)
, _audio (DCPOMATIC_RTAUDIO_API)
, _audio_channels (0)
, _audio_block_size (1024)
@@ -660,7 +659,7 @@ FilmViewer::film_changed (Film::Property p)
void
FilmViewer::refresh ()
{
- seek (_video_position, _last_seek_accurate);
+ seek (_video_position, true);
}
void
@@ -722,7 +721,6 @@ FilmViewer::seek (DCPTime t, bool accurate)
bool const was_running = stop ();
_butler->seek (t, accurate);
- _last_seek_accurate = accurate;
get ();
if (was_running) {