--- old/modules/javafx.controls/src/main/java/javafx/scene/control/skin/VirtualFlow.java 2016-10-10 13:08:07.000000000 +1300 +++ new/modules/javafx.controls/src/main/java/javafx/scene/control/skin/VirtualFlow.java 2016-10-10 13:08:07.000000000 +1300 @@ -2338,7 +2338,7 @@ // determine how many cells there are on screen so that the scrollbar // thumb can be appropriately sized - if (recreate && (lengthBar.isVisible() || Properties.IS_TOUCH_SUPPORTED)) { + if (lengthBar.isVisible() || Properties.IS_TOUCH_SUPPORTED) { final int cellCount = getCellCount(); int numCellsVisibleOnScreen = 0; for (int i = 0, max = cells.size(); i < max; i++) {