summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2020-01-06 18:31:44 +0100
committerSven Gothel <[email protected]>2020-01-06 18:31:44 +0100
commit0209655c26e9240639c5f0a76ca6ca54ae0584b1 (patch)
treee469ca7e0abc90795d45537a180dfd4fb05a062d /src
parent95fd39e361190c6c23019e1aa5ec21e6fe85fcd3 (diff)
Bug 1421: Minor commenting
Diffstat (limited to 'src')
-rw-r--r--src/newt/classes/jogamp/newt/WindowImpl.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/newt/classes/jogamp/newt/WindowImpl.java b/src/newt/classes/jogamp/newt/WindowImpl.java
index 25e34df05..7c4769cf5 100644
--- a/src/newt/classes/jogamp/newt/WindowImpl.java
+++ b/src/newt/classes/jogamp/newt/WindowImpl.java
@@ -2912,8 +2912,7 @@ public abstract class WindowImpl implements Window, NEWTEventConsumer
}
// Let the window be positioned if !fullscreen and position changed or being a child window.
if ( ( isReconfigureMaskSupported(STATE_MASK_REPOSITIONABLE) || !isNativeValid() ) &&
- !isFullscreen() &&
- ( getX() != x || getY() != y || null != getParent())
+ !isFullscreen() && ( getX() != x || getY() != y || null != getParent() /* Bug 969 comment 2 */ )
)
{
if(isNativeValid()) {