From 9955e053ac28d1dc1f6722893d7989d5e2b710c3 Mon Sep 17 00:00:00 2001 From: Sven Gothel Date: Sat, 3 Sep 2011 02:58:05 +0200 Subject: Revert commit 8dc31bcaa3ee3a2407d1960ab42d094cac642876: Implicit setUndecorated(true) if Capabilities !isBackgroundOpaque(). The original manual logic allows better control --- src/newt/classes/jogamp/newt/WindowImpl.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src') diff --git a/src/newt/classes/jogamp/newt/WindowImpl.java b/src/newt/classes/jogamp/newt/WindowImpl.java index 471262264..55b735b4f 100644 --- a/src/newt/classes/jogamp/newt/WindowImpl.java +++ b/src/newt/classes/jogamp/newt/WindowImpl.java @@ -172,7 +172,7 @@ public abstract class WindowImpl implements Window, NEWTEventConsumer window.parentWindowHandle = parentWindowHandle; window.screen = (ScreenImpl) screen; window.capsRequested = (CapabilitiesImmutable) caps.cloneMutable(); - window.setUndecorated(0!=parentWindowHandle || !caps.isBackgroundOpaque()); + window.setUndecorated(0!=parentWindowHandle); return window; } catch (Throwable t) { t.printStackTrace(); @@ -194,7 +194,6 @@ public abstract class WindowImpl implements Window, NEWTEventConsumer WindowImpl window = (WindowImpl) ReflectionUtil.createInstance( windowClass, cstrArgumentTypes, cstrArguments ) ; window.screen = (ScreenImpl) screen; window.capsRequested = (CapabilitiesImmutable) caps.cloneMutable(); - window.setUndecorated(!caps.isBackgroundOpaque()); return window; } catch (Throwable t) { throw new NativeWindowException(t); -- cgit v1.2.3