class CustomListProperty<T> : SimpleListProp...
# tornadofx
c
class CustomListProperty<T> : SimpleListProperty<T>() { override fun equals(other: Any?): Boolean { if( other == null ) return false return super.hashCode().equals(other!!.hashCode()) } }