Update of /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10255/src/net/sourceforge/bprocessor/gl
Modified Files:
GLView.java
Log Message:
fixed dimension bug
Index: GLView.java
===================================================================
RCS file: /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/GLView.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** GLView.java 17 Aug 2005 09:10:10 -0000 1.8
--- GLView.java 17 Aug 2005 10:18:02 -0000 1.9
***************
*** 7,12 ****
package net.sourceforge.bprocessor.gl;
- import java.awt.Dimension;
-
import net.sourceforge.bprocessor.gl.tool.Tool;
import net.sourceforge.bprocessor.gl.tool.ToolFactory;
--- 7,10 ----
***************
*** 49,54 ****
view = ViewFactory.getFactory(this).getDefault();
glc.addGLEventListener(view);
- glc.setMinimumSize(new Dimension(320, 0));
- glc.setMaximumSize(new Dimension(1024, 768));
tool = ToolFactory.getFactory(this).getDefault();
--- 47,50 ----
|