We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05af641 commit b947be0Copy full SHA for b947be0
.vscode/launch.json
@@ -21,7 +21,8 @@
21
"--plugins=local-dir:../plugins",
22
"--hosted-plugin-inspect=9339",
23
"--nosplash",
24
- "--content-trace"
+ "--content-trace",
25
+ "--open-devtools"
26
],
27
"env": {
28
"NODE_ENV": "development"
arduino-ide-extension/src/electron-main/theia/electron-main-application.ts
@@ -327,7 +327,7 @@ export class ElectronMainApplication extends TheiaElectronMainApplication {
327
): Promise<BrowserWindow> {
328
const electronWindow = await super.createWindow(options);
329
if (APP_STARTED_WITH_DEV_TOOLS) {
330
- electronWindow.webContents.openDevTools({ mode: 'undocked' });
+ electronWindow.webContents.openDevTools();
331
}
332
this.attachListenersToWindow(electronWindow);
333
return electronWindow;
0 commit comments