fix(settings): set proper default minimize to tray check
This commit is contained in:
parent
fb930f1197
commit
582739a091
1 changed files with 1 additions and 1 deletions
|
@ -85,7 +85,7 @@ export const WindowSettings = () => {
|
||||||
control: (
|
control: (
|
||||||
<Switch
|
<Switch
|
||||||
aria-label="Toggle minimize to tray"
|
aria-label="Toggle minimize to tray"
|
||||||
defaultChecked={settings.exitToTray}
|
defaultChecked={settings.minimizeToTray}
|
||||||
disabled={!isElectron()}
|
disabled={!isElectron()}
|
||||||
onChange={(e) => {
|
onChange={(e) => {
|
||||||
if (!e) return;
|
if (!e) return;
|
||||||
|
|
Reference in a new issue