X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Ffilm_viewer.cc;h=15f22472119470a16fcbd68b8cd3724f2148e288;hb=3f3727634b98ce2761a193b9d1e3fc14f51dcbd2;hp=21d4ae1fe1938e1da5d45de9e4b3e9a8bb0d07a7;hpb=228fbab81a5f093e9265d565c1110582c363def3;p=dcpomatic.git diff --git a/src/wx/film_viewer.cc b/src/wx/film_viewer.cc index 21d4ae1fe..15f224721 100644 --- a/src/wx/film_viewer.cc +++ b/src/wx/film_viewer.cc @@ -315,14 +315,14 @@ FilmViewer::calculate_sizes () _out_size.width = max (64, _out_size.width); _out_size.height = max (64, _out_size.height); + _player->set_video_container_size (_out_size); + /* The player will round its image size down to the next lowest 4 pixels to speed up its scale, so do similar here to avoid black borders around things. This is a bit of a hack. */ _out_size.width &= ~3; _out_size.height &= ~3; - - _player->set_video_container_size (_out_size); } void