--- old/modules/graphics/src/main/java/com/sun/javafx/tk/quantum/PaintCollector.java 2014-01-16 20:22:40.000000000 +0200 +++ new/modules/graphics/src/main/java/com/sun/javafx/tk/quantum/PaintCollector.java 2014-01-16 20:22:39.000000000 +0200 @@ -299,6 +299,11 @@ toolkit.vsyncHint(); } + Runnable renderEndNotifier = Application.GetApplication().getRenderEndNotifier(); + if (renderEndNotifier != null) { + Application.invokeLater(renderEndNotifier); + } + // If pulse logging is enabled, then we must call renderEnd now // that we know that all of the scene's being rendered are finished if (PULSE_LOGGING_ENABLED) {