From 3c1392e4338f857e85dd7fe5bdf605a341205e41 Mon Sep 17 00:00:00 2001 From: miku-666 <74728189+NessieHax@users.noreply.github.com> Date: Thu, 10 Aug 2023 13:11:38 +0200 Subject: [PATCH] AnimationEditor - Fixed blend color not being applied --- PCK-Studio/Forms/Editor/AnimationEditor.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/PCK-Studio/Forms/Editor/AnimationEditor.cs b/PCK-Studio/Forms/Editor/AnimationEditor.cs index 8811c7d5..ce599ba5 100644 --- a/PCK-Studio/Forms/Editor/AnimationEditor.cs +++ b/PCK-Studio/Forms/Editor/AnimationEditor.cs @@ -55,6 +55,7 @@ namespace PckStudio.Forms.Editor public AnimationEditor(PckFile.FileData file, Color blendColor) : this(file) { + animationPictureBox.UseBlendColor = true; animationPictureBox.BlendColor = blendColor; }