From 1f20d9e0112672f9bcf87d43195ef6c583189f27 Mon Sep 17 00:00:00 2001 From: Matt Parker <61717342+MattParkerDev@users.noreply.github.com> Date: Thu, 30 Oct 2025 18:18:40 +1000 Subject: [PATCH] rename parameter --- .../Features/SolutionExplorer/SolutionExplorerPanel.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SharpIDE.Godot/Features/SolutionExplorer/SolutionExplorerPanel.cs b/src/SharpIDE.Godot/Features/SolutionExplorer/SolutionExplorerPanel.cs index bb646fe..e5f6821 100644 --- a/src/SharpIDE.Godot/Features/SolutionExplorer/SolutionExplorerPanel.cs +++ b/src/SharpIDE.Godot/Features/SolutionExplorer/SolutionExplorerPanel.cs @@ -291,7 +291,7 @@ public partial class SolutionExplorerPanel : MarginContainer fileItem.SetCustomColor(0, GetColorForGitStatus(sharpIdeFile.GitStatus)); fileItem.SetMetadata(0, new RefCountedContainer(sharpIdeFile)); - Observable.EveryValueChanged(sharpIdeFile, folder => folder.Name) + Observable.EveryValueChanged(sharpIdeFile, file => file.Name) .Skip(1).SubscribeAwait(async (s, ct) => { await this.InvokeAsync(() => fileItem.SetText(0, s));