summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-02-02 22:44:21 +0000
committerCarl Hetherington <cth@carlh.net>2015-02-02 22:44:21 +0000
commit88a1ed7f07219b5cbca3221ab25fe3e77d50989e (patch)
tree57eea61185b1155558e7766814564ab878d78eb0 /src
parent7a1bd472537fee593a3f088655324861d24e804b (diff)
Revert 3f3727634b98ce2761a193b9d1e3fc14f51dcbd2 as it screws up the image with some viewer sizes.
Diffstat (limited to 'src')
-rw-r--r--src/wx/film_viewer.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wx/film_viewer.cc b/src/wx/film_viewer.cc
index 15f224721..21d4ae1fe 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