--- old/modules/graphics/src/main/java/com/sun/glass/events/WindowEvent.java 2016-03-28 16:17:05.000000000 -0700 +++ new/modules/graphics/src/main/java/com/sun/glass/events/WindowEvent.java 2016-03-28 16:17:05.000000000 -0700 @@ -27,6 +27,7 @@ public class WindowEvent { final static public int RESIZE = 511; final static public int MOVE = 512; + final static public int RESCALE = 513; final static public int CLOSE = 521; final static public int DESTROY = 522; @@ -51,6 +52,8 @@ return "RESIZE"; case WindowEvent.MOVE: return "MOVE"; + case WindowEvent.RESCALE: + return "RESCALE"; case WindowEvent.CLOSE: return "CLOSE"; case WindowEvent.DESTROY: