Login  Register

JOGL 2 rc11 newt + Windows 8

Posted by juankprada on Feb 18, 2013; 9:40pm
URL: https://forum.jogamp.org/JOGL-2-rc11-newt-Windows-8-tp4028259.html

Hi all

I moved my application from Linux to Windows for testing. So far all the functionality in the application Works without any issue. The only issue I've found is that whenever I click the X button on the window to close the application, eventhough the GLWindow closes, the Frame that contains it remains opened, empty (i.e White) and unresponsive.

This is the code I'm using to handle the closing request:

canvas.addWindowListener(new WindowAdapter() {
                        @Override
			public void windowDestroyNotify(WindowEvent e) {
				System.exit(0);
			}
		});


Needless to say, this same application worked just fine under Linux. Closing the application was not an issue.


thanks