From bfa61622b03ce0ed97677fe3e0875bb33cdfae1a Mon Sep 17 00:00:00 2001 From: miku-666 <74728189+NessieHax@users.noreply.github.com> Date: Thu, 23 May 2024 18:58:07 +0200 Subject: [PATCH] AddNewSkin - Fix skin name not showing in custom skin editor --- PCK-Studio/Forms/Skins-And-Textures/AddNewSkin.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/PCK-Studio/Forms/Skins-And-Textures/AddNewSkin.cs b/PCK-Studio/Forms/Skins-And-Textures/AddNewSkin.cs index 36ae3574..a2d79378 100644 --- a/PCK-Studio/Forms/Skins-And-Textures/AddNewSkin.cs +++ b/PCK-Studio/Forms/Skins-And-Textures/AddNewSkin.cs @@ -224,6 +224,9 @@ namespace PckStudio.Popups if (MessageBox.Show("Create your own custom skin model?", "", MessageBoxButtons.YesNo, MessageBoxIcon.Exclamation, MessageBoxDefaultButton.Button1) != DialogResult.Yes) return; + newSkin.MetaData.Name = textSkinName.Text; + newSkin.MetaData.Theme = textThemeName.Text; + using CustomSkinEditor customSkinEditor = new CustomSkinEditor(newSkin); if (customSkinEditor.ShowDialog() == DialogResult.OK)