From e1b121747deaa22f8689fcee1d528b263df77e8f Mon Sep 17 00:00:00 2001 From: miku-666 <74728189+NessieHax@users.noreply.github.com> Date: Mon, 4 Mar 2024 19:30:36 +0100 Subject: [PATCH] CustomSkinEditor - Update texture dimension invalid message --- PCK-Studio/Forms/Editor/CustomSkinEditor.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PCK-Studio/Forms/Editor/CustomSkinEditor.cs b/PCK-Studio/Forms/Editor/CustomSkinEditor.cs index 51cbfc34..0a899cd8 100644 --- a/PCK-Studio/Forms/Editor/CustomSkinEditor.cs +++ b/PCK-Studio/Forms/Editor/CustomSkinEditor.cs @@ -260,7 +260,7 @@ namespace PckStudio.Forms.Editor if (img.Width != img.Height && img.Height != img.Width / 2) { e.Cancel = true; - MessageBox.Show("Invalid image dimensions.", "", MessageBoxButtons.OK, MessageBoxIcon.Error); + MessageBox.Show("The selected image does not suit a skin texture.", "Invalid image dimensions.", MessageBoxButtons.OK, MessageBoxIcon.Error); return; } generateTextureCheckBox.Checked = false;