diff options
author | Sven Gothel <[email protected]> | 2014-02-25 17:17:31 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2014-02-25 17:17:31 +0100 |
commit | 64bdefac9191334ace292683a6a7c4274bc3f72b (patch) | |
tree | d388d1081c114d181004caec12ff424395cae5af /src/jogl/classes/javax/media/opengl/awt/GLCanvas.java | |
parent | c3621221b9a563495b4f54fe60e18e8db8cc57fb (diff) | |
parent | c2e6233c57f47c067dbb24f4a6a127fbaedf7a08 (diff) |
Merge branch 'master' into 2.2-train
Diffstat (limited to 'src/jogl/classes/javax/media/opengl/awt/GLCanvas.java')
-rw-r--r-- | src/jogl/classes/javax/media/opengl/awt/GLCanvas.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/jogl/classes/javax/media/opengl/awt/GLCanvas.java b/src/jogl/classes/javax/media/opengl/awt/GLCanvas.java index abf670c95..09589080f 100644 --- a/src/jogl/classes/javax/media/opengl/awt/GLCanvas.java +++ b/src/jogl/classes/javax/media/opengl/awt/GLCanvas.java @@ -818,9 +818,9 @@ public class GLCanvas extends Canvas implements AWTGLAutoDrawable, WindowClosing printActive = false; return; // not yet available .. } - if( !isShowing ) { + if( !isVisible() ) { if(DEBUG) { - System.err.println(getThreadName()+": Info: GLCanvas setupPrint - skipped GL render, drawable valid, canvas not showing"); + System.err.println(getThreadName()+": Info: GLCanvas setupPrint - skipped GL render, canvas not visible"); } printActive = false; return; // not yet available .. |