diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-01-17 02:59:29 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-01-22 14:34:25 +0100 |
| commit | 4b03cf0a567bc2f4528cf723c35141bd5ae0f65d (patch) | |
| tree | 0521290f617a84bc8f49178c9bdf2f4e689e7c81 | |
| parent | 07b608ab6b2daa5f4cb366716e3aa6ece8a74f39 (diff) | |
Announce changes to cinemas file separately.
| -rw-r--r-- | src/lib/config.cc | 3 | ||||
| -rw-r--r-- | src/lib/config.h | 1 |
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 }; |
