summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-09-26 11:42:16 +0100
committerCarl Hetherington <cth@carlh.net>2018-09-26 11:42:16 +0100
commit76a2964f5b1a6f6cf4ead13895ae9509029cc248 (patch)
tree40abb1d2d31ef39a01a443d3043c7ede70966de5 /src
parent1245a8bb685504f11733380077a564a783348433 (diff)
Fix empty player background.
Diffstat (limited to 'src')
-rw-r--r--src/wx/film_viewer.cc2
1 files changed, 1 insertions, 1 deletions
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));