diff --git a/PerformanceCalculatorGUI/Screens/SimulateScreen.cs b/PerformanceCalculatorGUI/Screens/SimulateScreen.cs index c31a62771..236eaea0d 100644 --- a/PerformanceCalculatorGUI/Screens/SimulateScreen.cs +++ b/PerformanceCalculatorGUI/Screens/SimulateScreen.cs @@ -135,8 +135,8 @@ private void load(OsuColour osuColour) AutoSizeAxes = Axes.Y, ColumnDimensions = new[] { - new Dimension(), new Dimension(GridSizeMode.Absolute), + new Dimension(), new Dimension(GridSizeMode.AutoSize) }, RowDimensions = new[] { new Dimension(GridSizeMode.AutoSize) }, @@ -423,21 +423,21 @@ private void load(OsuColour osuColour) { beatmapImportContainer.ColumnDimensions = new[] { - new Dimension(GridSizeMode.Absolute), new Dimension(), + new Dimension(GridSizeMode.Absolute), new Dimension(GridSizeMode.AutoSize) }; - - fixupTextBox(beatmapIdTextBox); } else { beatmapImportContainer.ColumnDimensions = new[] { - new Dimension(), new Dimension(GridSizeMode.Absolute), + new Dimension(), new Dimension(GridSizeMode.AutoSize) }; + + fixupTextBox(beatmapIdTextBox); } });