mirror of https://github.com/YosysHQ/nextpnr.git
Bounded cell type in gui
This commit is contained in:
parent
9ea60d1c8f
commit
5a9be3880a
|
|
@ -633,6 +633,7 @@ void DesignWidget::onSelectionChanged(int num, const QItemSelection &, const QIt
|
|||
addProperty(topItem, QVariant::String, "Type", ctx->getBelType(bel).c_str(ctx));
|
||||
addProperty(topItem, QVariant::Bool, "Available", ctx->checkBelAvail(bel));
|
||||
addProperty(topItem, QVariant::String, "Bound Cell", ctx->nameOf(ctx->getBoundBelCell(bel)), ElementType::CELL);
|
||||
addProperty(topItem, QVariant::String, "Bound Cell Type", ctx->getBoundBelCell(bel) ? ctx->getBoundBelCell(bel)->type.c_str(ctx) : "");
|
||||
addProperty(topItem, QVariant::String, "Conflicting Cell", ctx->nameOf(ctx->getConflictingBelCell(bel)),
|
||||
ElementType::CELL);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue