mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-06 03:50:02 +02:00
Merge remote-tracking branch 'origin/GP-4237_Dan_breakpointIconsInModelTreeUpdate'
This commit is contained in:
commit
6b32b4c980
2 changed files with 4 additions and 1 deletions
|
@ -768,6 +768,7 @@ public class ObjectTreeModel implements DisplaysModified {
|
|||
for (AbstractNode node : nodeCache.byObject.values()) {
|
||||
node.fireNodeChanged();
|
||||
}
|
||||
root.fireNodeChanged();
|
||||
}
|
||||
|
||||
protected void reload() {
|
||||
|
@ -779,8 +780,10 @@ public class ObjectTreeModel implements DisplaysModified {
|
|||
try (LockHold hold = trace == null ? null : trace.lockRead()) {
|
||||
for (AbstractNode node : List.copyOf(nodeCache.byObject.values())) {
|
||||
node.reloadChildrenNow();
|
||||
node.fireNodeChanged();
|
||||
}
|
||||
root.reloadChildrenNow();
|
||||
root.fireNodeChanged();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -244,7 +244,7 @@ public class DBTraceObjectBreakpointLocation
|
|||
Boolean locEn = TraceObjectInterfaceUtils.getValue(object, snap,
|
||||
TargetBreakpointSpec.ENABLED_ATTRIBUTE_NAME, Boolean.class, null);
|
||||
if (locEn != null) {
|
||||
return locEn;
|
||||
return locEn && getSpecification().isEnabled(snap);
|
||||
}
|
||||
return getSpecification().isEnabled(snap);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue