mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-31 06:26:16 +00:00
Issue #1275 debugging locals fix
This commit is contained in:
@@ -381,11 +381,15 @@ public class ABCPanel extends JPanel implements ItemListener, SearchListener<ABC
|
||||
}
|
||||
|
||||
private void reloadChildren() {
|
||||
InGetVariable igv = Main.getDebugHandler().getVariable(parentId, thisVar.name, true);
|
||||
childs = new ArrayList<>();
|
||||
childTraits = new ArrayList<>();
|
||||
|
||||
InGetVariable igv = Main.getDebugHandler().getVariable(parentId, thisVar.name, true);
|
||||
|
||||
if (thisVar.vType != VariableType.FUNCTION || ((thisVar.flags & VariableFlags.HAS_GETTER) > 0)) {
|
||||
thisVar = igv.parent;
|
||||
if (parentId != 0) {
|
||||
thisVar = igv.parent;
|
||||
}
|
||||
}
|
||||
Variable curTrait = null;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user