Can this be shortened? ``` textProperty()...
# tornadofx
j
Can this be shortened?
Copy code
textProperty().bind(Bindings.createStringBinding(Callable<String?> {
            if (loginController.committing.get()) {
              "Signing in"
            } else {
              "Sign in"
            }
          }, loginController.committing))