Always on top not working because I'm dumb

This commit is contained in:
Jean Ouina 2020-09-20 20:30:43 +02:00
parent 9809c564b4
commit 9dd0b1a585
1 changed files with 1 additions and 0 deletions

View File

@ -49,6 +49,7 @@ electron.ipcMain.on("LIGHTCORD_SET_ALWAYS_ON_TOP", (event, enabled) => {
const window = electron.BrowserWindow.fromId(getMainWindowId())
if(!window)return
window.setAlwaysOnTop(enabled)
event.returnValue = null
})
electron.ipcMain.on("LIGHTCORD_GET_BROWSERWINDOW_ID", (event) => {
event.returnValue = getMainWindowId()