diff options
author | Kenneth Russel <[email protected]> | 2005-02-14 22:19:43 +0000 |
---|---|---|
committer | Kenneth Russel <[email protected]> | 2005-02-14 22:19:43 +0000 |
commit | 69ca977ccf8d329cd72dced5ebb92501da460561 (patch) | |
tree | 22c527a2caa861385506f2b66638ce3ff4c991bc /src/demos/vertexBufferObject | |
parent | 9813d9cb28d5cca8ade58cd2bec82f364189f534 (diff) |
Fixed problem in demos introduced in 1.1 b08 where windowClosing
events were not properly waiting for the Animator to stop.
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/../svn-server-sync/jogl-demos/trunk@55 3298f667-5e0e-4b4a-8ed4-a3559d26a5f4
Diffstat (limited to 'src/demos/vertexBufferObject')
-rw-r--r-- | src/demos/vertexBufferObject/VertexBufferObject.java | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/demos/vertexBufferObject/VertexBufferObject.java b/src/demos/vertexBufferObject/VertexBufferObject.java index 8a697f1..78e10a9 100644 --- a/src/demos/vertexBufferObject/VertexBufferObject.java +++ b/src/demos/vertexBufferObject/VertexBufferObject.java @@ -231,8 +231,15 @@ public class VertexBufferObject { frame.addWindowListener(new WindowAdapter() { public void windowClosing(WindowEvent e) { - animator.stop(); - System.exit(0); + // Run this on another thread than the AWT event queue to + // make sure the call to Animator.stop() completes before + // exiting + new Thread(new Runnable() { + public void run() { + animator.stop(); + System.exit(0); + } + }).start(); } }); |