btw is there a difference between `ObservableList&...
# tornadofx
p
btw is there a difference between
ObservableList<Double>
and
SimpleListProperty<Double>
?
ohh.. i get it I think
g
Usually when dealing with an ObservableList the list always exists (or stays the same) but not it's elements. With the SimpleListProperty the ObservableList instance itself might change. You can still listen to list element changes with a SimpleListProperty.