Added additional panel for color defaults

This commit is contained in:
Craig Earls 2014-12-22 19:39:17 -08:00
parent d07b2f6802
commit 45ba0e3bb0

View File

@ -0,0 +1,18 @@
/**
*
*/
package net.sf.openrocket.gui.dialogs.preferences;
import javax.swing.JPanel;
import net.miginfocom.swing.MigLayout;
/**
* @author cpearls
*
*/
public class ColorDefaultsPanel extends JPanel {
public ColorDefaultsPanel(){
super(new MigLayout("fillx"));
}
}