Make the hide dock icon setting macOS only

This commit is contained in:
Manav Rathi 2024-05-07 14:30:37 +05:30
parent c090300175
commit 5d3bb71bbf
No known key found for this signature in database

View file

@ -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,
},
]),
],
},