From f7446b20d4ce0575906ee9e40dcee3c74af62860 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sun, 18 Feb 2018 00:34:01 +0000 Subject: [PATCH] Fix missing subtitles in the player when they are added with a VF. --- src/tools/dcpomatic_player.cc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/tools/dcpomatic_player.cc b/src/tools/dcpomatic_player.cc index c59d92523..3e36b575b 100644 --- a/src/tools/dcpomatic_player.cc +++ b/src/tools/dcpomatic_player.cc @@ -311,6 +311,10 @@ private: DCPOMATIC_ASSERT (dcp); dcp->add_ov (wx_to_std(c->GetPath())); dcp->examine (shared_ptr()); + /* Maybe we just gained some subtitles */ + if (dcp->subtitle) { + dcp->subtitle->set_use (true); + } } c->Destroy (); -- 2.30.2