<@U25U0KPFT> So you say I should do something like...
# tornadofx
j
@carlw So you say I should do something like this
Copy code
override fun start(stage: Stage) {
        super.start(stage)
        stage.isResizable = false
    }
and then when replacing the window I should make the window resizable again through a parameter?
c
yeah. it could be in the action handler where you call ((Stage)event.getSource().getScene().getWindow()).setResizable(true) Apologies for the Java
j
@carlw Action hanlder?