diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-08-26 11:55:56 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-08-26 11:55:56 +0200 |
| commit | ffb5e31b6a35a09f40afef45b787aa8bb345071d (patch) | |
| tree | de7a35ecf50ec06a866b77b357f8cf3bafefab88 | |
| parent | a8c230896e536b09068cfc3433047f34ef3f825f (diff) | |
Content changes should mark the film dirty (#1810).
| -rw-r--r-- | src/lib/film.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lib/film.cc b/src/lib/film.cc index cf7d04933..867944689 100644 --- a/src/lib/film.cc +++ b/src/lib/film.cc @@ -1377,6 +1377,8 @@ Film::playlist_content_change (ChangeType type, weak_ptr<Content> c, int p, bool } else { ContentChange (type, c, p, frequent); } + + _dirty = true; } void @@ -1394,6 +1396,8 @@ Film::playlist_change (ChangeType type) if (type == CHANGE_TYPE_DONE) { check_settings_consistency (); } + + _dirty = true; } /** Check for (and if necessary fix) impossible settings combinations, like |
