diff options
| author | Carl Hetherington <cth@carlh.net> | 2019-05-05 23:42:10 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2019-05-05 23:42:10 +0100 |
| commit | d1500d4f29d87ff7c19546b6cfd1d5b464b90f2b (patch) | |
| tree | 8240d602cbe52b5f404dddfb51b202f5f63aa2e2 /src | |
| parent | a49c3824e1b88e37a58a05b9142008ccd192d3d3 (diff) | |
Speculative fix for white lines at the bottom of full-screen playback windows.v2.14.2
Diffstat (limited to 'src')
| -rw-r--r-- | src/wx/film_viewer.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/film_viewer.cc b/src/wx/film_viewer.cc index b728f6b2a..6d050157c 100644 --- a/src/wx/film_viewer.cc +++ b/src/wx/film_viewer.cc @@ -393,7 +393,7 @@ FilmViewer::paint_panel () dc.SetBrush (b); int const gap = (_panel_size.height - _out_size.height) / 2; dc.DrawRectangle (0, 0, _panel_size.width, gap); - dc.DrawRectangle (0, gap + _out_size.height + 1, _panel_size.width, gap); + dc.DrawRectangle (0, gap + _out_size.height + 1, _panel_size.width, gap + 1); } if (_outline_content) { |
