223-electron-screen-recorder
223-electron-screen-recorder copied to clipboard
I can't select a source
when i clicked seletect source buttun nothin will appear... how to solve that
same here
You need to add enableRemoteModule: true
to createWindow()
:
const mainWindow = new BrowserWindow({
width: 800,
height: 600,
webPreferences: {
nodeIntegration: true,
enableRemoteModule: true
}
});
doesn't fix it