diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-03-17 12:24:02 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-03-17 12:45:46 +0100 |
| commit | 45fc375d656e99218ca8ec3281aa2605e148b521 (patch) | |
| tree | 486d81831f859c7ccc1d779b20e8f451e7cb6375 /src/lib/config.h | |
| parent | b2591c6a9104eb9368f51f020834aef7713acf29 (diff) | |
Add PlaylistEditorRestrictedMenus option, similar to PlayerRestrictedMenus.
Diffstat (limited to 'src/lib/config.h')
| -rw-r--r-- | src/lib/config.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/lib/config.h b/src/lib/config.h index a63830552..ec804c9bf 100644 --- a/src/lib/config.h +++ b/src/lib/config.h @@ -538,6 +538,10 @@ public: return _player_restricted_menus; } + bool playlist_editor_restricted_menus() const { + return _playlist_editor_restricted_menus; + } + int image_display () const { return _image_display; } @@ -1454,6 +1458,7 @@ private: boost::optional<std::string> _gdc_password; PlayerMode _player_mode; bool _player_restricted_menus = false; + bool _playlist_editor_restricted_menus = false; int _image_display; VideoViewType _video_view_type; bool _respect_kdm_validity_periods; |
