We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a40537 commit 6be04e1Copy full SHA for 6be04e1
arduino-ide-extension/package.json
@@ -19,7 +19,7 @@
19
"test:watch": "mocha --watch --watch-files lib \"./lib/test/**/*.test.js\""
20
},
21
"dependencies": {
22
- "arduino-serial-plotter-webapp": "0.0.10",
+ "arduino-serial-plotter-webapp": "0.0.11",
23
"@grpc/grpc-js": "^1.3.7",
24
"@theia/application-package": "1.18.0",
25
"@theia/core": "1.18.0",
arduino-ide-extension/src/electron-main/theia/electron-main-application.ts
@@ -97,6 +97,13 @@ export class ElectronMainApplication extends TheiaElectronMainApplication {
97
if (frameName === 'serialPlotter') {
98
event.preventDefault();
99
Object.assign(options, {
100
+ width: 800,
101
+ minWidth: 620,
102
+ height: 500,
103
+ minHeight: 320,
104
+ center: true,
105
+ x: 100,
106
+ y: 100,
107
webPreferences: {
108
devTools: true,
109
nativeWindowOpen: true,
0 commit comments