Quick question: Is there any difference between `b...
# tornadofx
e
Quick question: Is there any difference between
button("click me").action { ... }
and
button("click me") { action { ... }}
. Because I have troubles with the 1st form together with
runAsyncWithProgress
. The 2nd form works just fine, but
button.action { runAsyncWithProgress { ... }}
seems to remove the parent node of button instead of appending a spinner to the text of the button.