rename method

This commit is contained in:
Matt Parker
2025-12-12 19:12:51 +10:00
parent 29d101867f
commit b23febbcea

View File

@@ -25,7 +25,7 @@ public partial class ThreadsVariablesSubTab : Control
_threadsTree = GetNode<Tree>("%ThreadsTree"); _threadsTree = GetNode<Tree>("%ThreadsTree");
_stackFramesTree = GetNode<Tree>("%StackFramesTree"); _stackFramesTree = GetNode<Tree>("%StackFramesTree");
_variablesTree = GetNode<Tree>("%VariablesTree"); _variablesTree = GetNode<Tree>("%VariablesTree");
GlobalEvents.Instance.DebuggerExecutionStopped.Subscribe(OnDebuggerExecutionStopped2); GlobalEvents.Instance.DebuggerExecutionStopped.Subscribe(OnDebuggerExecutionStopped);
_threadsTree.ItemSelected += OnThreadSelected; _threadsTree.ItemSelected += OnThreadSelected;
_stackFramesTree.ItemSelected += OnStackFrameSelected; _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(); var threads = await _runService.GetThreadsAtStopPoint();
await this.InvokeAsync(() => await this.InvokeAsync(() =>