summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-01-17 02:59:29 +0100
committerCarl Hetherington <cth@carlh.net>2025-01-22 14:34:25 +0100
commit4b03cf0a567bc2f4528cf723c35141bd5ae0f65d (patch)
tree0521290f617a84bc8f49178c9bdf2f4e689e7c81
parent07b608ab6b2daa5f4cb366716e3aa6ece8a74f39 (diff)
Announce changes to cinemas file separately.
-rw-r--r--src/lib/config.cc3
-rw-r--r--src/lib/config.h1
2 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/config.cc b/src/lib/config.cc
index aa783b7a2..fd5f68993 100644
--- a/src/lib/config.cc
+++ b/src/lib/config.cc
@@ -1366,7 +1366,7 @@ Config::set_cinemas_file (boost::filesystem::path file)
_cinemas_file = file;
- changed (OTHER);
+ changed(CINEMAS_FILE);
}
@@ -1705,6 +1705,7 @@ Config::load_from_zip(boost::filesystem::path zip_file, CinemasAction action)
changed(Property::AUTO_CROP_THRESHOLD);
changed(Property::ALLOW_SMPTE_BV20);
changed(Property::ISDCF_NAME_PART_LENGTH);
+ changed(Property::CINEMAS_FILE);
changed(Property::OTHER);
}
diff --git a/src/lib/config.h b/src/lib/config.h
index ba3e1cdd8..5387f915f 100644
--- a/src/lib/config.h
+++ b/src/lib/config.h
@@ -120,6 +120,7 @@ public:
#ifdef DCPOMATIC_GROK
GROK,
#endif
+ CINEMAS_FILE,
OTHER
};