From 9e6cff2f04a0ff24e4dbc6be47f49d3b38a571e5 Mon Sep 17 00:00:00 2001 From: MattNL Date: Mon, 20 Feb 2023 17:54:38 -0500 Subject: [PATCH] BOX Editor now forces string case to upper --- PCK-Studio/Forms/Utilities/Skins/BoxEditor.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PCK-Studio/Forms/Utilities/Skins/BoxEditor.cs b/PCK-Studio/Forms/Utilities/Skins/BoxEditor.cs index e2fc7e8e..ddf89fe0 100644 --- a/PCK-Studio/Forms/Utilities/Skins/BoxEditor.cs +++ b/PCK-Studio/Forms/Utilities/Skins/BoxEditor.cs @@ -24,7 +24,7 @@ namespace PckStudio.Forms.Utilities.Skins try { - Parent = arguments[0]; + Parent = arguments[0].ToUpper(); // just in case a box has all lower, the editor still parses correctly Pos.X = float.Parse(arguments[1]); Pos.Y = float.Parse(arguments[2]); Pos.Z = float.Parse(arguments[3]);