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 9edd196 commit 44bce1eCopy full SHA for 44bce1e
main.js
@@ -19,13 +19,17 @@ function openVariableInspector () {
19
protocol: "file:",
20
slashes: true
21
}));
22
+
23
+ varInspector.on('close', () => {
24
+ varInspector = null;
25
+ })
26
}
27
28
function createWindow () {
29
win = new BrowserWindow({
- x: 20,
- y: 0,
- width: 750,
30
+ x: 20,
31
+ y: 0,
32
+ width: 750,
33
height: 1000,
34
icon: path.join(__dirname, 'livepython.png'),
35
title: "Livepython"
@@ -45,7 +49,6 @@ function createWindow () {
45
49
if (varInspector) {
46
50
varInspector.close();
47
51
varInspector = null;
48
-
52
} else {
53
openVariableInspector();
54
0 commit comments