<@U0MKUB7N3> The actual resize operation resulting...
# tornadofx
e
@deutronomium The actual resize operation resulting from calling
resizeColumnsToFitContent
might happen on another JavaFX pulse, so the
primaryStage.sizeToScene()
call is most probably evaluated before the resize operation is performed. You can probably wrap the sizeToScene call in a Platform.runLater and get the desired result, but this is not a good way to solve the issue. You can try it first though 🙂