diff --git a/desktop/src/main/menu.ts b/desktop/src/main/menu.ts index 45cbd636247d4323f4b535c9c63c318a62de1a55..188b195f825f1751bfa5f5a32358f8ed65db1a39 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, + }, + ]), ], },