From 29624165cfd5e68754e8035ef28a61d4c18c77ce Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Wed, 19 Sep 2018 01:12:35 +0100 Subject: [PATCH] Fix background colouring. --- src/wx/film_viewer.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wx/film_viewer.cc b/src/wx/film_viewer.cc index 86805f146..a27c0053d 100644 --- a/src/wx/film_viewer.cc +++ b/src/wx/film_viewer.cc @@ -91,7 +91,7 @@ FilmViewer::FilmViewer (wxWindow* p) #endif _panel->SetBackgroundStyle (wxBG_STYLE_PAINT); - _panel->SetBackgroundColour (*wxBLACK); + _panel->SetBackgroundColour (wxNullColour); _panel->Bind (wxEVT_PAINT, boost::bind (&FilmViewer::paint_panel, this)); _panel->Bind (wxEVT_SIZE, boost::bind (&FilmViewer::panel_sized, this, _1)); @@ -333,7 +333,7 @@ FilmViewer::paint_panel () dc.SetPen (p); dc.SetBrush (b); int const gap = (_panel_size.height - _out_size.height) / 2; - dc.DrawRectangle (0, gap, _panel_size.width, gap); + dc.DrawRectangle (0, 0, _panel_size.width, gap); dc.DrawRectangle (0, gap + _out_size.height, _panel_size.width, gap); } -- 2.30.2