1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-11-26 22:41:17 +02:00

Desktop: Fixes #9108: Added Note Properties to Note menu bar items (#9119)

This commit is contained in:
CptMeetKat
2023-10-23 23:05:06 +11:00
committed by GitHub
parent 4ecc4816e9
commit cd8b5388ec
2 changed files with 2 additions and 0 deletions

View File

@@ -817,6 +817,7 @@ function useMenu(props: Props) {
menuItemDic.setTags, menuItemDic.setTags,
menuItemDic.showShareNoteDialog, menuItemDic.showShareNoteDialog,
separator(), separator(),
menuItemDic.showNoteProperties,
menuItemDic.showNoteContentProperties, menuItemDic.showNoteContentProperties,
], ],
}, },

View File

@@ -67,5 +67,6 @@ export default function() {
'switchProfile2', 'switchProfile2',
'switchProfile3', 'switchProfile3',
'pasteAsText', 'pasteAsText',
'showNoteProperties',
]; ];
} }