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

Desktop: Regression: Remove Hide Joplin menu item on Linux too

This commit is contained in:
Laurent Cozic 2020-10-13 09:45:40 +01:00
parent ff50361e19
commit c01f533342

View File

@ -399,12 +399,12 @@ function useMenu(props:Props) {
platforms: ['darwin'],
},
!shim.isMac() ? noItem : {
shim.isMac() ? {
label: _('Hide %s', 'Joplin'),
platforms: ['darwin'],
accelerator: shim.isMac() && keymapService.getAccelerator('hideApp'),
click: () => { bridge().electronApp().hide(); },
},
} : noItem,
{
type: 'separator',