diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-01-01 19:39:11 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-01-01 19:39:11 +0000 |
| commit | 2eb98168b80792ba21fe31423d50bd28c4f17837 (patch) | |
| tree | d705321303c2169fa51e061048de43c5d4d58c82 /src | |
| parent | d2926ea8574330b9c7f4efa4241843cf052652b8 (diff) | |
Hacky fix for black borders round image view.
Diffstat (limited to 'src')
| -rw-r--r-- | src/wx/film_viewer.cc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/wx/film_viewer.cc b/src/wx/film_viewer.cc index e9c668a71..a4a293918 100644 --- a/src/wx/film_viewer.cc +++ b/src/wx/film_viewer.cc @@ -259,6 +259,13 @@ FilmViewer::calculate_sizes () _out_size.width = max (64, _out_size.width); _out_size.height = max (64, _out_size.height); + /* The player will round its image down to the nearest 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); } |
