diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-06-08 14:34:03 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-06-08 14:34:03 +0100 |
| commit | 5ea436422329f6526d5fb04ada95fe9f46a26558 (patch) | |
| tree | 70149d735698092b51f51632c239398122d0beea /src/lib/dcp_subtitle_content.cc | |
| parent | f07623551706b849190c84059bac455088f8eb1e (diff) | |
Default to enabling DCP/SubRip subtitles after they have been added.
Diffstat (limited to 'src/lib/dcp_subtitle_content.cc')
| -rw-r--r-- | src/lib/dcp_subtitle_content.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib/dcp_subtitle_content.cc b/src/lib/dcp_subtitle_content.cc index c457e8474..742773043 100644 --- a/src/lib/dcp_subtitle_content.cc +++ b/src/lib/dcp_subtitle_content.cc @@ -53,6 +53,9 @@ DCPSubtitleContent::examine (shared_ptr<Job> job) Content::examine (job); shared_ptr<dcp::SubtitleAsset> sc = load (path (0)); + + /* Default to turning these subtitles on */ + set_use_subtitles (true); boost::mutex::scoped_lock lm (_mutex); |
