Stéphane Derosiaux
08/22/2019, 9:13 AMoverride val root = vbox {
val prop = SimpleStringProperty("").apply { onChange { println("changed to $it") } }
textfield(prop)
}
It works ("changed to ..") until I have a [GC (Allocation Failure)... then it doesn't. Looks like the property/listener is GC'd (some weak references?). Does that ring a bell?