ScrollPane content becomes blurry after dragging
JavaFX 8.0 has this bug and I don't know how to solve it. Example: http://i.imgur.com/tavh6XA.png If I drag ScrollPane, its content becomes blurry, but if I drag it back, the content restores its sharpness. If I do not modify coords, the content looks pretty well. Did anybody solve this problem? Example code: @Override public void start(Stage stage) { Pane pane = new Pane(); Scene scene = new Scene(pane, 500, 500); pane.prefWidthProperty().bind(scene.widthProperty()); pane.prefHeightProperty().bind(scene.heightProperty()); ScrollPane scroll = new ScrollPane(); // Center ScrollPane scroll