From: Carl Hetherington Date: Tue, 9 Jul 2013 22:11:01 +0000 (+0100) Subject: Fix initial display of frame. X-Git-Tag: v2.0.48~1337^2~299 X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=239d317bbd762f3f3b3fbed1d1b1bd03b49aad06 Fix initial display of frame. --- diff --git a/src/wx/film_viewer.cc b/src/wx/film_viewer.cc index 6d7181b5f..e5d07a118 100644 --- a/src/wx/film_viewer.cc +++ b/src/wx/film_viewer.cc @@ -131,6 +131,7 @@ FilmViewer::set_film (shared_ptr f) _player->Video.connect (boost::bind (&FilmViewer::process_video, this, _1, _2, _3)); _player->Changed.connect (boost::bind (&FilmViewer::player_changed, this)); + calculate_sizes (); fetch_current_frame_again (); } @@ -211,6 +212,7 @@ FilmViewer::panel_sized (wxSizeEvent& ev) { _panel_size.width = ev.GetSize().GetWidth(); _panel_size.height = ev.GetSize().GetHeight(); + calculate_sizes (); fetch_current_frame_again (); }