We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6067865 commit f527046Copy full SHA for f527046
app/src/processing/app/AbstractMonitor.java
@@ -85,7 +85,7 @@ public void actionPerformed(ActionEvent ae) {
85
suspend();
86
}
87
} else {
88
- if (closed) {
+ if (closed && (Editor.avoidMultipleOperations == false)) {
89
resume(boardPort);
90
91
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