1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-06-15 23:00:36 +02:00

Desktop: Improved: When opening a note using Goto Anything, open all its parent notebooks too

This commit is contained in:
Laurent Cozic
2019-05-14 00:11:27 +01:00
parent 5c069c38f5
commit 0e2bb5d784
2 changed files with 19 additions and 1 deletions

View File

@ -488,6 +488,12 @@ const reducer = (state = defaultState, action) => {
newState.collapsedFolderIds = action.ids.slice();
break;
case 'FOLDER_SET_COLLAPSED':
newState = Object.assign({}, state);
folderSetCollapsed(state, action);
break;
case 'TAG_UPDATE_ALL':
newState = Object.assign({}, state);