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(() =>