From ffdadf7a79f444e8fdd24857c687a89b1e938b09 Mon Sep 17 00:00:00 2001 From: Matt Parker <61717342+MattParkerDev@users.noreply.github.com> Date: Fri, 17 Oct 2025 20:27:17 +1000 Subject: [PATCH] set solution model --- src/SharpIDE.Godot/IdeRoot.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/SharpIDE.Godot/IdeRoot.cs b/src/SharpIDE.Godot/IdeRoot.cs index e98f596..537baa8 100644 --- a/src/SharpIDE.Godot/IdeRoot.cs +++ b/src/SharpIDE.Godot/IdeRoot.cs @@ -129,6 +129,7 @@ public partial class IdeRoot : Control _searchWindow.Solution = solutionModel; _searchAllFilesWindow.Solution = solutionModel; Singletons.FileExternalChangeHandler.SolutionModel = solutionModel; + Singletons.FileChangeHandler.SolutionModel = solutionModel; Callable.From(_solutionExplorerPanel.RepopulateTree).CallDeferred(); RoslynAnalysis.StartSolutionAnalysis(solutionModel); Singletons.FileWatcher.StartWatching(solutionModel);