--- old/modules/graphics/src/main/java/com/sun/javafx/tk/quantum/GlassAppletWindow.java 2016-03-28 16:17:43.000000000 -0700 +++ new/modules/graphics/src/main/java/com/sun/javafx/tk/quantum/GlassAppletWindow.java 2016-03-28 16:17:43.000000000 -0700 @@ -122,10 +122,17 @@ } @Override - public float getUIScale() { - final AtomicReference uiScale = new AtomicReference(0.0f); - Application.invokeAndWait(() -> uiScale.set(glassWindow.getPlatformScale())); - return uiScale.get(); + public float getPlatformScaleX() { + final AtomicReference pScale = new AtomicReference(0.0f); + Application.invokeAndWait(() -> pScale.set(glassWindow.getPlatformScaleX())); + return pScale.get(); + } + + @Override + public float getPlatformScaleY() { + final AtomicReference pScale = new AtomicReference(0.0f); + Application.invokeAndWait(() -> pScale.set(glassWindow.getPlatformScaleY())); + return pScale.get(); } void dispose() {