I could be wrong, but when you do `items.observabl...
# tornadofx
d
I could be wrong, but when you do
items.observable()
you are creating a new object. So when you do
items.addAll
in your apply, it is adding to the mutable list, but that is not what is bound to the listview. That is why making items observable directly works.