Add quit + restart button to main menu )

This commit is contained in:
Araxeus
2021-03-26 00:24:03 +02:00
parent 33d4c1a60e
commit 09d2feb15b

View File

@ -219,6 +219,14 @@ const mainMenuTemplate = (win) => [
} }
}, },
}, },
{
label: 'Restart App',
click: () => {app.relaunch(); app.quit();}
} ,
{
label: 'Quit App',
click: () => {app.quit();}
}
], ],
}, },
]; ];