File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
arduino-ide-extension/src/electron-main/theia Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 21
21
" --plugins=local-dir:../plugins" ,
22
22
" --hosted-plugin-inspect=9339" ,
23
23
" --nosplash" ,
24
- " --content-trace"
24
+ " --content-trace" ,
25
+ " --open-devtools"
25
26
],
26
27
"env" : {
27
28
"NODE_ENV" : " development"
Original file line number Diff line number Diff line change @@ -327,7 +327,7 @@ export class ElectronMainApplication extends TheiaElectronMainApplication {
327
327
) : Promise < BrowserWindow > {
328
328
const electronWindow = await super . createWindow ( options ) ;
329
329
if ( APP_STARTED_WITH_DEV_TOOLS ) {
330
- electronWindow . webContents . openDevTools ( { mode : 'undocked' } ) ;
330
+ electronWindow . webContents . openDevTools ( ) ;
331
331
}
332
332
this . attachListenersToWindow ( electronWindow ) ;
333
333
return electronWindow ;
You can’t perform that action at this time.
0 commit comments