Skip to content

Commit 99664ee

Browse files
author
Alberto Iannaccone
authored
avoid using useContentSize when creating a new window (#1197)
1 parent 57841b3 commit 99664ee

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Diff for: arduino-ide-extension/src/electron-main/theia/electron-main-application.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -363,9 +363,8 @@ export class ElectronMainApplication extends TheiaElectronMainApplication {
363363
options.webPreferences = {};
364364
}
365365
options.webPreferences.v8CacheOptions = 'bypassHeatCheck'; // TODO: verify this. VS Code use this V8 option.
366-
options.useContentSize = true;
367366
options.minWidth = 680;
368-
options.minHeight = 565;
367+
options.minHeight = 593;
369368
return options;
370369
}
371370

0 commit comments

Comments
 (0)