From: Carl Hetherington Date: Wed, 26 Sep 2018 10:42:16 +0000 (+0100) Subject: Fix empty player background. X-Git-Tag: v2.13.56~3 X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=76a2964f5b1a6f6cf4ead13895ae9509029cc248 Fix empty player background. --- diff --git a/src/wx/film_viewer.cc b/src/wx/film_viewer.cc index db72e6c60..fd3bfa1c1 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 (wxNullColour); + _panel->SetBackgroundColour (*wxBLACK); _panel->Bind (wxEVT_PAINT, boost::bind (&FilmViewer::paint_panel, this)); _panel->Bind (wxEVT_SIZE, boost::bind (&FilmViewer::panel_sized, this, _1));