diff options
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/config.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lib/config.h b/src/lib/config.h index 23286ddb0..a162750fe 100644 --- a/src/lib/config.h +++ b/src/lib/config.h @@ -78,6 +78,7 @@ public: SOUND_OUTPUT, INTERFACE_COMPLEXITY, PLAYER_CONTENT_DIRECTORY, + PLAYER_PLAYLIST_DIRECTORY, HISTORY, #ifdef DCPOMATIC_VARIANT_SWAROOP PLAYER_BACKGROUND_IMAGE, @@ -964,7 +965,7 @@ public: } void set_player_playlist_directory (boost::filesystem::path p) { - maybe_set (_player_playlist_directory, p); + maybe_set (_player_playlist_directory, p, PLAYER_PLAYLIST_DIRECTORY); } void unset_player_playlist_directory () { @@ -972,7 +973,7 @@ public: return; } _player_playlist_directory = boost::none; - changed (); + changed (PLAYER_PLAYLIST_DIRECTORY); } void set_player_kdm_directory (boost::filesystem::path p) { |
