Only burn subtitles if it is turned on.
[dcpomatic.git] / src / wx / film_viewer.cc
index 6499aa4099b10b5c580e89da457c5d473aa2c95b..74e3b81ed82df4126c5ea1b5bee202b2feb3621b 100644 (file)
@@ -153,7 +153,7 @@ FilmViewer::get (DCPTime p, bool accurate)
 
        list<shared_ptr<PlayerVideo> > pvf = _player->get_video (p, accurate);
        if (!pvf.empty ()) {
-               _frame = pvf.front()->image ();
+               _frame = pvf.front()->image (true);
                _frame = _frame->scale (_frame->size(), Scaler::from_id ("fastbilinear"), PIX_FMT_RGB24, false);
                _position = pvf.front()->time ();
        } else {