From 239d317bbd762f3f3b3fbed1d1b1bd03b49aad06 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 9 Jul 2013 23:11:01 +0100 Subject: [PATCH] Fix initial display of frame. --- src/wx/film_viewer.cc | 2 ++ 1 file changed, 2 insertions(+) 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 (); } -- 2.30.2