From 1a8083d3f1fe7497975a832d2a6124d42de291d2 Mon Sep 17 00:00:00 2001 From: MayNL Date: Sat, 2 May 2026 22:32:05 -0400 Subject: [PATCH] Changing BOX Version now redraws icons --- PCK-Studio/MainForm.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/PCK-Studio/MainForm.cs b/PCK-Studio/MainForm.cs index 9cc9e3f5..a56f977d 100644 --- a/PCK-Studio/MainForm.cs +++ b/PCK-Studio/MainForm.cs @@ -610,6 +610,8 @@ namespace PckStudio if (TryGetCurrentEditor(out IEditor editor) && editor.EditorValue.File.xmlVersion != version) { editor.EditorValue.File.xmlVersion = version; + if(Settings.Default.UseCustomSkinIcons || Settings.Default.UseCustomCapeIcons) + editor.UpdateView(); // reset all custom node icons Console.WriteLine($"New XMLVersion: {editor.TitleName} {editor.EditorValue.File.xmlVersion}"); } }