fix(debugger): read watched variables

This commit is contained in:
Jindra Petřík
2026-03-05 20:32:24 +01:00
parent fa50dcb931
commit 9db82d1df4

View File

@@ -668,7 +668,7 @@ public class DebugPanel extends JPanel {
List<Variable> watchedVars = new ArrayList<>();
List<Long> watchedParentIds = new ArrayList<>();
for (DebuggerCommands.Watch w : session.getWatches().values()) {
InGetVariable igv = session.getVariable(w.varId, w.varName, false, false);
InGetVariable igv = session.getVariable(w.varId, w.varName, false, true);
if (igv != null) {
Variable wVar = igv.parent;
if (wVar != null) {