Found the problem! I was using a list of `data cla...
# tornadofx
p
Found the problem! I was using a list of
data class xyz
that contains 3 properties and has no
hashCode
implementation, and for some reason this made the
cellCache
bug out. Might want to investigate this. Fixed by overriding the
hashCode
and returning
identityHashCode
. I don't know how the
property.hashCode
is implemented, can't find it in the sources.