Allow specification of subtitle language even if DVD-o-matic isn't providing the...
authorCarl Hetherington <cth@carlh.net>
Sun, 20 Oct 2013 15:08:18 +0000 (16:08 +0100)
committerCarl Hetherington <cth@carlh.net>
Sun, 20 Oct 2013 15:08:18 +0000 (16:08 +0100)
ChangeLog
src/lib/film.cc

index 218ed6f028fd70d34673e42a9857872aaed7ca1f..20c759025bb99888525aea603af3daf37bed08e0 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2013-10-20  Carl Hetherington  <cth@carlh.net>
+
+       * Allow specification of subtitle language even if DVD-o-matic
+       isn't providing the subtitles.
+
 2013-10-19  Carl Hetherington  <cth@carlh.net>
 
        * Fix non-saving of colour transform presets.
index 2697b062fb8211be7d4838e421f4359a134b2e2e..f869289d5700fbab7fca1de7e5785d58a3775d29 100644 (file)
@@ -475,7 +475,7 @@ Film::dci_name (bool if_created_now) const
 
        if (!dm.audio_language.empty ()) {
                d << "_" << dm.audio_language;
-               if (!dm.subtitle_language.empty() && with_subtitles()) {
+               if (!dm.subtitle_language.empty()) {
                        d << "-" << dm.subtitle_language;
                } else {
                        d << "-XX";