From 598331cc3b1bbb1563e4083383e944e828352765 Mon Sep 17 00:00:00 2001 From: Matt Parker <61717342+MattParkerDev@users.noreply.github.com> Date: Fri, 12 Sep 2025 18:12:16 +1000 Subject: [PATCH] Update ProblemsPanel.cs --- src/SharpIDE.Godot/Features/Problems/ProblemsPanel.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/SharpIDE.Godot/Features/Problems/ProblemsPanel.cs b/src/SharpIDE.Godot/Features/Problems/ProblemsPanel.cs index 41c3d12..b1fd27a 100644 --- a/src/SharpIDE.Godot/Features/Problems/ProblemsPanel.cs +++ b/src/SharpIDE.Godot/Features/Problems/ProblemsPanel.cs @@ -25,6 +25,7 @@ public partial class ProblemsPanel : Control _projects.AddRange(s!.AllProjects); }); _vBoxContainer = GetNode("ScrollContainer/VBoxContainer"); + _vBoxContainer.GetChildren().ToList().ForEach(c => c.QueueFree()); _vBoxContainer.BindChildren(_projects, _problemsPanelProjectEntryScene); } } \ No newline at end of file