Skip to content

Commit

Permalink
avoid using useContentSize when creating a new window (arduino#1197)
Browse files Browse the repository at this point in the history
  • Loading branch information
Alberto Iannaccone authored Jul 18, 2022
1 parent 57841b3 commit 99664ee
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -363,9 +363,8 @@ export class ElectronMainApplication extends TheiaElectronMainApplication {
options.webPreferences = {};
}
options.webPreferences.v8CacheOptions = 'bypassHeatCheck'; // TODO: verify this. VS Code use this V8 option.
options.useContentSize = true;
options.minWidth = 680;
options.minHeight = 565;
options.minHeight = 593;
return options;
}

Expand Down

0 comments on commit 99664ee

Please sign in to comment.