added quit to main menu, added refresh playlists

This commit is contained in:
booploops 2022-06-21 06:41:15 -07:00
parent 2a63c89679
commit b94dd5fb19
5 changed files with 23 additions and 0 deletions

View file

@ -1168,6 +1168,10 @@ export class BrowserWindow {
app.quit();
})
ipcMain.handle("quit-app", (_event, _) => {
app.quit();
})
app.on('before-quit', () => {
})