Removed unused test panels.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@435 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Walter Korman
2001-10-11 16:20:06 +00:00
parent 057256e2fe
commit bc9a03988a
4 changed files with 1 additions and 100 deletions
@@ -1,5 +1,5 @@
//
// $Id: ViewerFrame.java,v 1.19 2001/10/11 00:41:27 shaper Exp $
// $Id: ViewerFrame.java,v 1.20 2001/10/11 16:20:06 shaper Exp $
package com.threerings.miso.viewer;
@@ -59,21 +59,6 @@ class ViewerFrame extends JFrame implements WindowListener
new ViewerSceneViewPanel(_ctx, spritemgr, sprite);
top.add(svpanel, GroupLayout.FIXED);
// create a sub-panel to hold the side panels
JPanel sub = new JPanel();
gl = new VGroupLayout(GroupLayout.STRETCH);
gl.setOffAxisPolicy(GroupLayout.STRETCH);
gl.setJustification(GroupLayout.TOP);
sub.setLayout(gl);
// add the various side-panels
sub.add(new StatusPanel(), GroupLayout.FIXED);
sub.add(new ManagementPanel());
sub.add(new ChatPanel());
// add the sub-panel to the main panel
top.add(sub);
// add the main panel to the frame
getContentPane().add(top, BorderLayout.CENTER);
}