Fix layout issues.

This commit is contained in:
kruland2607 2013-11-15 16:09:31 -06:00
parent ac4ecc9285
commit 36d290a85e

View File

@ -139,7 +139,6 @@ public class ThrustCurveMotorSelectionPanel extends JPanel implements MotorSelec
//// GUI
JPanel panel = new JPanel(new MigLayout("fill","[][grow]"));
this.add(panel, "grow");
//// Select thrust curve:
{
@ -260,7 +259,7 @@ public class ThrustCurveMotorSelectionPanel extends JPanel implements MotorSelec
JScrollPane scrollpane = new JScrollPane();
scrollpane.setViewportView(table);
panel.add(scrollpane, "grow, width :500:, height :300:, spanx, wrap");
panel.add(scrollpane, "grow, width :500:, spanx, wrap");
}