1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-07-16 00:14:34 +02:00

Desktop, Mobile: Resolves #8021: Remember whether "All notes", a notebook or a tag was opened when re-opening the app

This commit is contained in:
Laurent Cozic
2023-09-24 20:21:58 +01:00
parent 24097edc20
commit d14b694b6c
5 changed files with 93 additions and 8 deletions

View File

@ -771,6 +771,7 @@ class Setting extends BaseModel {
// selected folder. It corresponds in general to the currently selected folder or
// to the last folder that was selected.
activeFolderId: { value: '', type: SettingItemType.String, public: false },
notesParent: { value: '', type: SettingItemType.String, public: false },
richTextBannerDismissed: { value: false, type: SettingItemType.Bool, storage: SettingStorage.File, isGlobal: true, public: false },