8000
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 d2fca3a commit 523e769Copy full SHA for 523e769
app/src/processing/app/AbstractMonitor.java
@@ -83,7 +83,7 @@ public void actionPerformed(ActionEvent ae) {
83
suspend();
84
}
85
} else {
86
- if (closed) {
+ if (closed && (Editor.avoidMultipleOperations == false)) {
87
resume(boardPort);
88
89
app/src/processing/app/Editor.java
@@ -181,7 +181,7 @@ public boolean test(SketchController controller) {
181
182
private int numTools = 0;
183
184
- public boolean avoidMultipleOperations = false;
+ static public boolean avoidMultipleOperations = false;
185
186
private final EditorToolbar toolbar;
187
// these menus are shared so that they needn't be rebuilt for all windows
0 commit comments