Edvin Syse

Results 153 comments of Edvin Syse

What type is tfParent? Please supply a complete, runnable code example that showcases the issue.

You are listening for an `AutoCompletionBinding` from ControlsFX. It has no effect on the `bindAutoCompletion` function in TornadoFX-Controls :)

That would be described in the ControlsFX project, there is no difference between TornadoFX and JavaFX in that respect. If you want to listen to this event, use the corresponding...

I'm sorry for the late reply, super busy as usual. If you have time, please make a PR against this project and I'll merge/publish a new version.

I'm working on supporting icon only mode better and it requires more changes, so we might just end up with copying the complete layout code from Kotlin to Java again....

There are many ways to skin the cat, but I prefer not to use the main stage for the splash screen. Something like this would work: ```kotlin class SplashScreen :...

It sounds like the run configuration didn't select the `main` module of your Gradle project. Make sure it uses the module that contains the app class :) Does that help?

Then it's obvious that the `desktop` module doesn't infact contain that class. Check the modules and see what they contain. I thought IDEA created a `_main` module with your app...

IDEA by default creates three modules, even for a single module project. I think your gradle IDEA config is broken somehow. Try to reimport it. You can also try to...

This can be problematic, because if something inside the action lambda is accessing the button via `this`, that code would fail, and even worse, it could end up targeting another...