From 9446cd1fbfd77b63cf27bc1e4074b121eabb90ee Mon Sep 17 00:00:00 2001 From: Miepee Date: Tue, 13 Dec 2022 05:59:52 +0100 Subject: [PATCH] Fixed label lookout table, and mac check --- AM2RModPacker/ModPacker.Designer.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/AM2RModPacker/ModPacker.Designer.cs b/AM2RModPacker/ModPacker.Designer.cs index 5e73aad..24a99e1 100644 --- a/AM2RModPacker/ModPacker.Designer.cs +++ b/AM2RModPacker/ModPacker.Designer.cs @@ -17,9 +17,9 @@ public partial class ModPacker : Form labelLookupTable = new Dictionary() { { ProfileOperatingSystems.Windows, windowsLabel }, - { ProfileOperatingSystems.Linux, windowsLabel }, - { ProfileOperatingSystems.Mac, windowsLabel }, - { ProfileOperatingSystems.Android, windowsLabel }, + { ProfileOperatingSystems.Linux, linuxLabel }, + { ProfileOperatingSystems.Mac, macLabel }, + { ProfileOperatingSystems.Android, apkLabel }, }; buttonLookupTable = new Dictionary() { @@ -151,7 +151,7 @@ public partial class ModPacker : Form private CheckBox customSaveCheckBox = new CheckBox() { Text = "Uses custom save directory" }; private Button customSaveButton = new Button() { Text = "Select folder", Enabled = false }; // TODO: remove read only and make it correctly respond to user input - private TextBox customSaveTextBox = new TextBox() { ReadOnly = true}; + private TextBox customSaveTextBox = new TextBox() { ReadOnly = true }; private CheckBox musicCheckBox = new CheckBox() { Text = "Uses custom music" }; private CheckBox yycCheckBox = new CheckBox() { Text = "Uses the YoYo Compiler" };