From d1500d4f29d87ff7c19546b6cfd1d5b464b90f2b Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sun, 5 May 2019 23:42:10 +0100 Subject: Speculative fix for white lines at the bottom of full-screen playback windows. --- src/wx/film_viewer.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- cgit v1.2.3