From 0bc93bb24bb5c1c0e5e0412cfff2898fe38b5b08 Mon Sep 17 00:00:00 2001 From: Pilzinsel64 Date: Mon, 17 Nov 2025 07:36:20 +0100 Subject: [PATCH] fix --- ModpackUpdater.Apps.Manager/Features/SharedFunctions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ModpackUpdater.Apps.Manager/Features/SharedFunctions.cs b/ModpackUpdater.Apps.Manager/Features/SharedFunctions.cs index f134021..318dc9d 100644 --- a/ModpackUpdater.Apps.Manager/Features/SharedFunctions.cs +++ b/ModpackUpdater.Apps.Manager/Features/SharedFunctions.cs @@ -83,7 +83,7 @@ internal static class SharedFunctions api.Model.CurrentWorkspace.UpdateInfos.Updates.Insert(0, updateSet); // Add update to ui - api.Model.CurrentTreeNodes[1].Nodes.Add(new ActionSetTreeNode(updateSet)); + api.Model.CurrentTreeNodes[1].Nodes.Insert(0, new ActionSetTreeNode(updateSet)); return true; }