We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01ebb69 commit 79a5c9fCopy full SHA for 79a5c9f
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
@@ -182,7 +182,7 @@ public boolean test(SketchController controller) {
182
183
private int numTools = 0;
184
185
- public boolean avoidMultipleOperations = false;
+ static public boolean avoidMultipleOperations = false;
186
187
private final EditorToolbar toolbar;
188
// these menus are shared so that they needn't be rebuilt for all windows
0 commit comments