Another readability question: I noticed you have `...
# tornadofx
r
Another readability question: I noticed you have
if (bean is ViewModel) (bean as ViewModel).isDirty(this) else false
. Do you prefer that to
(bean as? ViewModel)?.isDirty(this) ?: false
? The latter is more concise, but the former reads better.