diff options
author | Sven Gothel <[email protected]> | 2011-11-27 17:40:45 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-11-27 17:40:45 +0100 |
commit | d3df9b409a0b524497eadd92ccf749ac669b0825 (patch) | |
tree | 2340142350b016b170c79c19155cdb00283b2ad1 /src/nativewindow | |
parent | 3602649d8e15d2272ac58e9d2abbf60e1e17ff0d (diff) |
MacWindow: Impl. DriverUpdatePosition; Alias position2TopLevel -> getLocationOnScreenImpl
Since the MacWindow position needs to be changed in concert with the parent,
we need to be triggered to update ours. AWTParentWindowAdapter issues 'updatePosition()'
if DriverUpdatePosition is implemented.
Diffstat (limited to 'src/nativewindow')
-rw-r--r-- | src/nativewindow/classes/jogamp/nativewindow/jawt/macosx/MacOSXJAWTWindow.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nativewindow/classes/jogamp/nativewindow/jawt/macosx/MacOSXJAWTWindow.java b/src/nativewindow/classes/jogamp/nativewindow/jawt/macosx/MacOSXJAWTWindow.java index 1370f0fca..ab2986fbe 100644 --- a/src/nativewindow/classes/jogamp/nativewindow/jawt/macosx/MacOSXJAWTWindow.java +++ b/src/nativewindow/classes/jogamp/nativewindow/jawt/macosx/MacOSXJAWTWindow.java @@ -242,9 +242,9 @@ public class MacOSXJAWTWindow extends JAWTWindow implements SurfaceChangeable { if(null != getJAWT()) { System.err.println("JAWT version: 0x"+Integer.toHexString(getJAWT().getCachedVersion())+ ", CA_LAYER: "+ JAWTUtil.isJAWTUsingOffscreenLayer(getJAWT())+ - ", isLayeredSurface "+isOffscreenLayerSurfaceEnabled()+", bounds "+bounds); + ", isLayeredSurface "+isOffscreenLayerSurfaceEnabled()+", bounds "+bounds+", insets "+insets); } else { - System.err.println("JAWT n/a, bounds "+bounds); + System.err.println("JAWT n/a, bounds "+bounds+", insets "+insets); } // Thread.dumpStack(); } |