From 38bb4b7c4d3f746f0dd2d0713d30481641c7be50 Mon Sep 17 00:00:00 2001 From: PhoenixARC <46140834+PhoenixARC@users.noreply.github.com> Date: Sat, 23 Apr 2022 13:59:20 -0400 Subject: [PATCH 1/2] Update README.md add note about building once. --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 09c162f7..26f749b7 100644 --- a/README.md +++ b/README.md @@ -28,3 +28,7 @@ Modify .PCK archives as you please! * Open `MinecraftUSkinEditor.sln` * hit run *or* hit **Shift+b** + +### A quick note: + +* Forms will not load in viewer until the solution is build _at least_ once From adda1c0d8dde8732b3e3038a877bb6150242aa56 Mon Sep 17 00:00:00 2001 From: MattNL Date: Sat, 23 Apr 2022 21:11:49 -0400 Subject: [PATCH 2/2] Fixed a drag and drop bug Fixed an oversight that deleted files that were not in a folder while using the drag and drop feature. --- MinecraftUSkinEditor/Forms/Form1.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MinecraftUSkinEditor/Forms/Form1.cs b/MinecraftUSkinEditor/Forms/Form1.cs index 36d7f9e9..565c73d2 100644 --- a/MinecraftUSkinEditor/Forms/Form1.cs +++ b/MinecraftUSkinEditor/Forms/Form1.cs @@ -1382,7 +1382,7 @@ namespace PckStudio } else { - treeView1.Nodes.Insert(targetIndex, draggedNode); + treeViewMain.Nodes.Insert(targetIndex, draggedNode); } } }