How to resize JavaFX ScrollPane content to fit current size
Try ScrollPane scrollPane = new ScrollPane(); scrollPane.setFitToHeight(true); scrollPane.setFitToWidth(true); without overriding the resize() method.
Try ScrollPane scrollPane = new ScrollPane(); scrollPane.setFitToHeight(true); scrollPane.setFitToWidth(true); without overriding the resize() method.