From 4e2d378acc61d77590ab0323b30307eaa319b90e Mon Sep 17 00:00:00 2001 From: SiboVG Date: Thu, 29 Aug 2024 09:27:54 +0200 Subject: [PATCH] Allow PlotExportPanel to grow --- .../componentanalysis/ComponentAnalysisPlotExportPanel.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/swing/src/main/java/info/openrocket/swing/gui/dialogs/componentanalysis/ComponentAnalysisPlotExportPanel.java b/swing/src/main/java/info/openrocket/swing/gui/dialogs/componentanalysis/ComponentAnalysisPlotExportPanel.java index 21371a65c..cfbc31f9f 100644 --- a/swing/src/main/java/info/openrocket/swing/gui/dialogs/componentanalysis/ComponentAnalysisPlotExportPanel.java +++ b/swing/src/main/java/info/openrocket/swing/gui/dialogs/componentanalysis/ComponentAnalysisPlotExportPanel.java @@ -64,7 +64,7 @@ public class ComponentAnalysisPlotExportPanel extends JPanel implements PlotPane public ComponentAnalysisPlotExportPanel(ComponentAnalysisDialog parent, CAParameters parameters, AerodynamicCalculator aerodynamicCalculator, Rocket rocket) { - super(new MigLayout("fill, height 700px")); + super(new MigLayout("fill, height 700px!", "[]", "[grow]")); this.parent = parent; this.parameters = parameters;