summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-01-30 20:21:31 +0000
committerCarl Hetherington <cth@carlh.net>2015-01-30 20:21:31 +0000
commit3f3727634b98ce2761a193b9d1e3fc14f51dcbd2 (patch)
tree30b56da5ac43e490ac0dddfe858f8ae8247a87ac
parent3fbdafe28a4de745b19dce322777c1e3281f421f (diff)
Hopefully fix black borders round the preview in some cases.
-rw-r--r--ChangeLog5
-rw-r--r--src/wx/film_viewer.cc4
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 6b617c06e..bcf3ea2d8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2015-01-30 Carl Hetherington <cth@carlh.net>
+
+ * Hopefully fix black borders round the preview in
+ some cases.
+
2015-01-24 Carl Hetherington <cth@carlh.net>
* Version 2.0.38 released.
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