summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--src/lib/film.cc4
2 files changed, 9 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 26bd287dc..55f1dea8b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2014-06-12 Carl Hetherington <cth@carlh.net>
+
+ * Fix bug where DCP-o-matic does not recreate video after
+ subtitles are turned on or off.
+
2014-06-10 Carl Hetherington <cth@carlh.net>
* Support ISDCF naming convention version 9 (#257).
diff --git a/src/lib/film.cc b/src/lib/film.cc
index 5b709ab1c..609003bba 100644
--- a/src/lib/film.cc
+++ b/src/lib/film.cc
@@ -184,6 +184,10 @@ Film::video_identifier () const
s << "_3D";
}
+ if (_with_subtitles) {
+ s << "_WS";
+ }
+
return s.str ();
}