Navigation Menu

Skip to content

Commit

Permalink
Bug 1421: Minor commenting
Browse files Browse the repository at this point in the history
  • Loading branch information
sgothel committed Jan 6, 2020
1 parent 95fd39e commit 0209655
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/newt/classes/jogamp/newt/WindowImpl.java
Expand Up @@ -2912,8 +2912,7 @@ public final void run() {
}
// 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()) {
Expand Down

0 comments on commit 0209655

Please sign in to comment.