Speculative fix for white lines at the bottom of full-screen playback windows. v2.14.2
authorCarl Hetherington <cth@carlh.net>
Sun, 5 May 2019 22:42:10 +0000 (23:42 +0100)
committerCarl Hetherington <cth@carlh.net>
Sun, 5 May 2019 22:42:10 +0000 (23:42 +0100)
src/wx/film_viewer.cc

index b728f6b2a0a47c8a69d54a69f0b5761260b5fe42..6d050157c40f0deef027b8ca2fcb902ef4aebef3 100644 (file)
@@ -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) {