Skip to content

Commit 0816570

Browse files
authored
Merge pull request #7884 from AcKoucher/gui-scan-inst-inspection
gui: add scan inst property to inst descriptor
2 parents 6c27ccf + 397c4b6 commit 0816570

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/gui/src/dbDescriptors.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -619,6 +619,11 @@ Descriptor::Properties DbInstDescriptor::getDBProperties(
619619
props.push_back({"Timing/Power", gui->makeSelected(sta_inst)});
620620
}
621621

622+
odb::dbScanInst* scan_inst = inst->getScanInst();
623+
if (scan_inst != nullptr) {
624+
props.push_back({"Scan Inst", gui->makeSelected(scan_inst)});
625+
}
626+
622627
return props;
623628
}
624629

0 commit comments

Comments
 (0)