<@UAU0APMRS> Use `runAsync(daemon = true) { .. }` ...
# tornadofx
e
@Roman Use
runAsync(daemon = true) { .. }
and also make sure that your calls to
homeController
are either wrapped in
runLater
so they run on the UI thread, or make sure the functions themselves make sure they run on the correct thread
🙏 1