AddNewSkin - Fix skin name not showing in custom skin editor

This commit is contained in:
miku-666
2024-05-23 18:58:07 +02:00
parent 6f7eb8fa5e
commit bfa61622b0

View File

@@ -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)