From: Carl Hetherington Date: Sun, 5 May 2019 22:42:10 +0000 (+0100) Subject: Speculative fix for white lines at the bottom of full-screen playback windows. X-Git-Tag: v2.14.2^0 X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=d1500d4f29d87ff7c19546b6cfd1d5b464b90f2b Speculative fix for white lines at the bottom of full-screen playback windows. --- 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) {