Fix empty player background.
authorCarl Hetherington <cth@carlh.net>
Wed, 26 Sep 2018 10:42:16 +0000 (11:42 +0100)
committerCarl Hetherington <cth@carlh.net>
Wed, 26 Sep 2018 10:42:16 +0000 (11:42 +0100)
src/wx/film_viewer.cc

index db72e6c6037fb759ff43b1587830fe878119e9b4..fd3bfa1c108472236ab502d5db066336914e70e1 100644 (file)
@@ -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));