<@UD0R5903D>, `fire(...)` inside just `init { ... ...
# tornadofx
v
@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