diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-10-17 15:55:31 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-10-17 15:55:31 +0100 |
| commit | aedc1d5c8db3a77bd6b2cbba8461ce8df5c9ae39 (patch) | |
| tree | bb1878744f980be7c3ed2ef0994259018f13bbef /src/wx | |
| parent | b62341601bd2c7022ea1c60bf06d3d8d11bf667f (diff) | |
Fix initial display of a new piece of content.
Diffstat (limited to 'src/wx')
| -rw-r--r-- | src/wx/film_viewer.cc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/wx/film_viewer.cc b/src/wx/film_viewer.cc index 291ab422d..945644fb1 100644 --- a/src/wx/film_viewer.cc +++ b/src/wx/film_viewer.cc @@ -150,7 +150,10 @@ FilmViewer::fetch_current_frame_again () */ _got_frame = false; - _player->repeat_last_video (); + if (!_player->repeat_last_video ()) { + fetch_next_frame (); + } + _panel->Refresh (); _panel->Update (); } |
