<@U13A9PZC0>: It's because you kind of mixed two w...
# tornadofx
e
@gtnarg: It's because you kind of mixed two ways of creating properties 🙂 The
var loginDisabled by property(SimpleBooleanProperty())
declaration created an
ObjectProperty<SimpleBooleanProperty>
. What you wanted to do was
var loginDisabled by property<Boolean>()
which would create an
ObjectProperty<Boolean>
.