We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6251fc5 commit fc9c1feCopy full SHA for fc9c1fe
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