From 74f9ebbc18d01155b070ae08addb029eb3c8d643 Mon Sep 17 00:00:00 2001 From: Matt Parker <61717342+MattParkerDev@users.noreply.github.com> Date: Wed, 17 Dec 2025 18:30:11 +1000 Subject: [PATCH] variable default icon --- .../Features/Debug_/Tab/SubTabs/ThreadsVariablesSubTab.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/SharpIDE.Godot/Features/Debug_/Tab/SubTabs/ThreadsVariablesSubTab.cs b/src/SharpIDE.Godot/Features/Debug_/Tab/SubTabs/ThreadsVariablesSubTab.cs index 551aede..47a85fb 100644 --- a/src/SharpIDE.Godot/Features/Debug_/Tab/SubTabs/ThreadsVariablesSubTab.cs +++ b/src/SharpIDE.Godot/Features/Debug_/Tab/SubTabs/ThreadsVariablesSubTab.cs @@ -146,6 +146,7 @@ public partial class ThreadsVariablesSubTab : Control { // unlike sharpdbg and presumably vsdbg, netcoredbg does not set PresentationHint for variables if (variable.Name == "Static members") icon = _staticMembersIcon; + else icon = _fieldIcon; } variableItem.SetIcon(0, icon); variableItem.SetMetadata(0, new Vector2I(0, variable.VariablesReference));