[Bprocessor-commit] gui/src/net/sourceforge/bprocessor/gui GUI.java,1.28,1.29
Status: Pre-Alpha
Brought to you by:
henryml
From: rimestad <rim...@us...> - 2006-02-09 13:55:21
|
Update of /cvsroot/bprocessor/gui/src/net/sourceforge/bprocessor/gui In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20192/src/net/sourceforge/bprocessor/gui Modified Files: GUI.java Log Message: Changes to the attribute view so that it now are able to show attributes more general Index: GUI.java =================================================================== RCS file: /cvsroot/bprocessor/gui/src/net/sourceforge/bprocessor/gui/GUI.java,v retrieving revision 1.28 retrieving revision 1.29 diff -C2 -d -r1.28 -r1.29 *** GUI.java 8 Feb 2006 10:13:20 -0000 1.28 --- GUI.java 9 Feb 2006 13:55:12 -0000 1.29 *************** *** 30,33 **** --- 30,34 ---- import java.awt.BorderLayout; import java.awt.Component; + import java.awt.Dimension; import java.awt.Font; import java.awt.event.KeyEvent; *************** *** 338,342 **** tp.addTab("Surfaces", new JScrollPane (new SurfaceTreeView())); tp.addTab("Views", new CameraView()); ! registerPanel(tp, SPLIT_LEFT); --- 339,344 ---- tp.addTab("Surfaces", new JScrollPane (new SurfaceTreeView())); tp.addTab("Views", new CameraView()); ! tp.setMinimumSize(new Dimension(120, 240)); ! tp.setPreferredSize(new Dimension(120, 240)); registerPanel(tp, SPLIT_LEFT); |