Skip to content

Commit 7ed2c9e

Browse files
committed
Merge branch 'Alignment-and-cleanup-of-Axis' of
https://github.com/rondlh/BowlerStudio.git into development
1 parent 38f1b45 commit 7ed2c9e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/main/java/com/neuronrobotics/bowlerstudio/scripting/ScriptingWebWidget.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,12 +85,12 @@ public ScriptingWebWidget(File currentFile, String currentGist, WebEngine engine
8585
}
8686

8787
private void startStopAction() {
88-
runfx.setDisable(true);
88+
BowlerStudio.runLater(()-> runfx.setDisable(true));
8989
if (running)
9090
stop();
9191
else
9292
start();
93-
runfx.setDisable(false);
93+
BowlerStudio.runLater(()-> runfx.setDisable(false));
9494
}
9595

9696
public ScriptingWebWidget(ScriptingWidgetType type) {

0 commit comments

Comments
 (0)