1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-24 10:27:10 +02:00

macOS: add 'Hide Others' and 'Show All' menu items (#5024)

This commit is contained in:
Helmut K. C. Tessarek 2021-06-06 18:49:44 -04:00 committed by GitHub
parent 8afac643ba
commit 7921e70c4f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -526,6 +526,14 @@ function useMenu(props: Props) {
click: () => { bridge().electronApp().hide(); },
} : noItem,
shim.isMac() ? {
role: 'hideothers',
} : noItem,
shim.isMac() ? {
role: 'unhide',
} : noItem,
{
type: 'separator',
},