swaroop: speculative fix for background image appearing between playlist items.
authorCarl Hetherington <cth@carlh.net>
Thu, 10 Jan 2019 00:14:28 +0000 (00:14 +0000)
committerCarl Hetherington <cth@carlh.net>
Thu, 10 Jan 2019 00:14:28 +0000 (00:14 +0000)
src/wx/film_viewer.cc

index 5c1b59ad6a89efd87cdbb38b266dfb2b1ee452f2..e7d51624ac182e303127e461c873013211f81543 100644 (file)
@@ -330,7 +330,12 @@ FilmViewer::paint_panel ()
 {
        wxPaintDC dc (_panel);
 
-       if (!_frame || !_film || !_out_size.width || !_out_size.height || _out_size != _frame->size()) {
+       if (!_out_size.width || !_out_size.height || _out_size != _frame->size()) {
+               dc.Clear ();
+               return;
+       }
+
+       if (!_frame || !_film) {
                dc.Clear ();
                maybe_draw_background_image (dc);
                return;