I tried both `Run`, and `Debug`, with the default ...
# tornadofx
h
I tried both
Run
, and
Debug
, with the default app generated by IDEA and it does not reflect changes like label text changed
m
sometimes it can't be applied for javafx app - probably it architecture specific thing but IDEA reload classes in debug mode after
Build/Make
(needed class recompilation) pretty often
Try reload view with your label that was changed
h
I can see the changes after stop and re- run/debug
which is pretty standard
And I can even see in the log that there's actually a Reload event run, but the label is not changed
m
Its because your view(with label) already instanced to object from old class with old label
not sure that my explanation is clear enough
h
yeah, so is there something I can do to make live-reload work as expected. I've seen the youtube Edvin made awhile about this and really like it. But it doesn't work like that on my machine
m
oh, then I said only about standard IDEA/Java features related to the reload. not about TFX feature, so this thread redundant
h
ah, I see, anyway Edvin has shown me the way to do it.
Thank you.