|
From: <eli...@us...> - 2006-04-06 21:01:22
|
Revision: 2297 Author: elias_naur Date: 2006-04-06 14:00:43 -0700 (Thu, 06 Apr 2006) ViewCVS: http://svn.sourceforge.net/java-game-lib/?rev=2297&view=rev Log Message: ----------- Made AWTGLCanvas listen to its own component events Modified Paths: -------------- trunk/LWJGL/src/java/org/lwjgl/opengl/AWTGLCanvas.java Modified: trunk/LWJGL/src/java/org/lwjgl/opengl/AWTGLCanvas.java =================================================================== --- trunk/LWJGL/src/java/org/lwjgl/opengl/AWTGLCanvas.java 2006-04-05 15:26:44 UTC (rev 2296) +++ trunk/LWJGL/src/java/org/lwjgl/opengl/AWTGLCanvas.java 2006-04-06 21:00:43 UTC (rev 2297) @@ -150,6 +150,7 @@ if (pixel_format == null) throw new NullPointerException("Pixel format must be non-null"); addHierarchyListener(this); + addComponentListener(this); this.drawable = drawable; this.pixel_format = pixel_format; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |