Display subtitles in player.
authorCarl Hetherington <cth@carlh.net>
Mon, 21 Aug 2017 21:58:38 +0000 (22:58 +0100)
committerCarl Hetherington <cth@carlh.net>
Mon, 21 Aug 2017 21:58:38 +0000 (22:58 +0100)
src/tools/dcpomatic_player.cc

index 959b5709cac5b13be4ae5b4666827ee0daddb7d8..70ff051ab39667cf99396aac17e2c9ee6b119948 100644 (file)
@@ -28,6 +28,7 @@
 #include "lib/job_manager.h"
 #include "lib/job.h"
 #include "lib/video_content.h"
+#include "lib/subtitle_content.h"
 #include "wx/wx_signal_manager.h"
 #include "wx/wx_util.h"
 #include "wx/about_dialog.h"
@@ -154,6 +155,10 @@ public:
                        return;
                }
 
+               if (dcp->subtitle) {
+                       dcp->subtitle->set_use (true);
+               }
+
                _viewer->set_film (_film);
                _info->triggered_update ();
        }