We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Used to do so
let devtools = new BrowserWindow({ frame : false, parent : mainWindow, skipTaskbar : true, }); devtools.setMenuBarVisibility(false); mainWindow.webContents.setDevToolsWebContents(devtools.webContents); mainWindow.webContents.openDevTools({ mode: 'detach' }) mainWindow.webContents.once('did-finish-load', function () { let windowBounds = mainWindow.getBounds(); devtools.setPosition(windowBounds.x + windowBounds.width, windowBounds.y); devtools.setSize(windowBounds.width/2, windowBounds.height); }); mainWindow.on('move', function () { let windowBounds = mainWindow.getBounds(); devtools.setPosition(windowBounds.x + windowBounds.width, windowBounds.y); });
how to do with a electron-debug ?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Used to do so
how to do with a electron-debug ?
The text was updated successfully, but these errors were encountered: