From ddf70f700aa6bba9b79e35b547b534247739dc82 Mon Sep 17 00:00:00 2001 From: KillzXGaming Date: Wed, 8 May 2019 15:46:26 -0400 Subject: [PATCH] Fix image editor not updating on some edits --- .../Forms/Editors/ImageEditor/ImageEditorBase.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Switch_Toolbox_Library/Forms/Editors/ImageEditor/ImageEditorBase.cs b/Switch_Toolbox_Library/Forms/Editors/ImageEditor/ImageEditorBase.cs index 8d6a9fc6..ab1857ea 100644 --- a/Switch_Toolbox_Library/Forms/Editors/ImageEditor/ImageEditorBase.cs +++ b/Switch_Toolbox_Library/Forms/Editors/ImageEditor/ImageEditorBase.cs @@ -686,7 +686,7 @@ namespace Switch_Toolbox.Library.Forms ArrayLevel = CurArrayDisplayLevel }; - pictureBoxCustom1.Image = image; + pictureBoxCustom1.Image = new Bitmap(image); TotalMipCount = ActiveTexture.MipCount - 1; TotalArrayCount = ActiveTexture.ArrayCount - 1;