diff options
author | Sven Gothel <[email protected]> | 2014-01-12 07:56:54 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2014-01-12 07:56:54 +0100 |
commit | d2f50f2ed523aa8443f647e46aeecc09fa27583d (patch) | |
tree | d37992bafe523630179e6a766c3b60f467659aef /src/test | |
parent | 071bdd6ce9f8c41ccecdbf8bc74f276ccd7ff651 (diff) |
AWTParentWindowAdapter/AWTRobotUtil: Use 'isShowing()' instead of 'isVisible()' determining actual on-screen showing state
See commit 071bdd6ce9f8c41ccecdbf8bc74f276ccd7ff651
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/com/jogamp/opengl/test/junit/util/AWTRobotUtil.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/com/jogamp/opengl/test/junit/util/AWTRobotUtil.java b/src/test/com/jogamp/opengl/test/junit/util/AWTRobotUtil.java index cf58ae257..599a6dc9f 100644 --- a/src/test/com/jogamp/opengl/test/junit/util/AWTRobotUtil.java +++ b/src/test/com/jogamp/opengl/test/junit/util/AWTRobotUtil.java @@ -656,7 +656,7 @@ public class AWTRobotUtil { } } else if(NativeWindowFactory.isAWTAvailable() && obj instanceof java.awt.Component) { java.awt.Component comp = (java.awt.Component) obj; - for (wait=0; wait<POLL_DIVIDER && visible != comp.isVisible(); wait++) { + for (wait=0; wait<POLL_DIVIDER && visible != comp.isShowing(); wait++) { Thread.sleep(TIME_SLICE); } } else { @@ -719,7 +719,7 @@ public class AWTRobotUtil { } } else if (NativeWindowFactory.isAWTAvailable() && obj instanceof java.awt.Component) { java.awt.Component comp = (java.awt.Component) obj; - while( (t1-t0) < TIME_OUT && realized != comp.isDisplayable() ) { + while( (t1-t0) < TIME_OUT && realized != comp.isShowing() ) { if( null != waitAction ) { waitAction.run(); } else { |