diff --git a/desktop/src/main/menu.ts b/desktop/src/main/menu.ts index 45cbd6362..188b195f8 100644 --- a/desktop/src/main/menu.ts +++ b/desktop/src/main/menu.ts @@ -82,12 +82,14 @@ export const createApplicationMenu = async (mainWindow: BrowserWindow) => { checked: isAutoLaunchEnabled, click: toggleAutoLaunch, }, - { - label: "Hide Dock Icon", - type: "checkbox", - checked: shouldHideDockIcon, - click: toggleHideDockIcon, - }, + ...macOSOnly([ + { + label: "Hide Dock Icon", + type: "checkbox", + checked: shouldHideDockIcon, + click: toggleHideDockIcon, + }, + ]), ], },