From ffb5e31b6a35a09f40afef45b787aa8bb345071d Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Wed, 26 Aug 2020 11:55:56 +0200 Subject: [PATCH] Content changes should mark the film dirty (#1810). --- src/lib/film.cc | 4 ++++ 1 file changed, 4 insertions(+) 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 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 -- 2.30.2