From b23febbcea6b6db058ae339131c393c4492836ca Mon Sep 17 00:00:00 2001 From: Matt Parker <61717342+MattParkerDev@users.noreply.github.com> Date: Fri, 12 Dec 2025 19:12:51 +1000 Subject: [PATCH] rename method --- .../Features/Debug_/Tab/SubTabs/ThreadsVariablesSubTab.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/SharpIDE.Godot/Features/Debug_/Tab/SubTabs/ThreadsVariablesSubTab.cs b/src/SharpIDE.Godot/Features/Debug_/Tab/SubTabs/ThreadsVariablesSubTab.cs index d789690..0b8afbc 100644 --- a/src/SharpIDE.Godot/Features/Debug_/Tab/SubTabs/ThreadsVariablesSubTab.cs +++ b/src/SharpIDE.Godot/Features/Debug_/Tab/SubTabs/ThreadsVariablesSubTab.cs @@ -25,7 +25,7 @@ public partial class ThreadsVariablesSubTab : Control _threadsTree = GetNode("%ThreadsTree"); _stackFramesTree = GetNode("%StackFramesTree"); _variablesTree = GetNode("%VariablesTree"); - GlobalEvents.Instance.DebuggerExecutionStopped.Subscribe(OnDebuggerExecutionStopped2); + GlobalEvents.Instance.DebuggerExecutionStopped.Subscribe(OnDebuggerExecutionStopped); _threadsTree.ItemSelected += OnThreadSelected; _stackFramesTree.ItemSelected += OnStackFrameSelected; } @@ -80,7 +80,7 @@ public partial class ThreadsVariablesSubTab : Control } - private async Task OnDebuggerExecutionStopped2(ExecutionStopInfo stopInfo) + private async Task OnDebuggerExecutionStopped(ExecutionStopInfo stopInfo) { var threads = await _runService.GetThreadsAtStopPoint(); await this.InvokeAsync(() =>