Notice the handy `fxThread` parameter to the actio...
# tornadofx
e
Notice the handy
fxThread
parameter to the actions. Since the actions are performed on the Swing UI Thread, the
fxThread = true
pushed them onto the JavaFX Application Thread so you don't need to wrap the code in
Platform.runLater
.
👏 1