This commit is contained in:
Matt Parker
2025-08-29 21:23:35 +10:00
parent 3c87c8088c
commit a7e05f6ebb
4 changed files with 15 additions and 5 deletions

View File

@@ -4,5 +4,10 @@ namespace SharpIDE.Godot.Features.Debug_.Tab.SubTabs;
public partial class ThreadsVariablesSubTab : Control
{
private VBoxContainer _threadsVboxContainer = null!;
public override void _Ready()
{
_threadsVboxContainer = GetNode<VBoxContainer>("%ThreadsPanel/VBoxContainer");
}
}