From eda37fb9b63aa13ae974c5d92bc9203491abb3a4 Mon Sep 17 00:00:00 2001 From: minisbett <39670899+minisbett@users.noreply.github.com> Date: Sun, 13 Oct 2024 02:38:40 +0200 Subject: [PATCH] change default beatmap import type to id --- PerformanceCalculatorGUI/Screens/SimulateScreen.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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); } });