File tree Expand file tree Collapse file tree
java/src/processing/mode/java Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -157,7 +157,7 @@ public Runner handleTweak(Sketch sketch,
157157 if (launchInteractive ) {
158158 // fix swing deadlock issue: https://github.com/processing/processing/issues/3928
159159 EventQueue .invokeLater (() -> {
160- editor .initEditorCode (parser .allHandles , false );
160+ editor .initEditorCode (parser .allHandles );
161161 editor .stopTweakMode (parser .allHandles );
162162 });
163163 }
@@ -167,7 +167,7 @@ public Runner handleTweak(Sketch sketch,
167167 // fix swing deadlock issue: https://github.com/processing/processing/issues/3928
168168 EventQueue .invokeLater (() -> {
169169 // replace editor code with baseCode
170- editor .initEditorCode (parser .allHandles , false );
170+ editor .initEditorCode (parser .allHandles );
171171 editor .updateInterface (parser .allHandles , parser .colorBoxes );
172172 editor .startTweakMode ();
173173 });
You can’t perform that action at this time.
0 commit comments