mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-07-07 23:19:17 +00:00
fix(debugger): read watched variables
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user