I can work around by casting to Property<Double...
# tornadofx
m
I can work around by casting to Property<Double>
Copy code
class LimitsViewModel(limits: Limits) : ItemViewModel<Limits>(limits) {
    val errorMaxSpeed = bind(Limits::errorMaxSpeedProperty) as Property<Double>
}