Join Slack
Powered by
<@UD0R5903D>, `fire(...)` inside just `init { ... ...
# tornadofx
v
ValV
09/25/2018, 10:44 PM
@arxenix
,
fire(...)
inside just
init { ... }
will not reach the target. You should do
init { runLater { fire(...) } }
. 'Cause
runLater
will be executed after View is built up and ready
Open in Slack
Previous
Next