From 5a9be3880a72368cdf440301746f4f361879d789 Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Mon, 30 Jun 2025 17:22:29 +0200 Subject: [PATCH] Bounded cell type in gui --- gui/designwidget.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/gui/designwidget.cc b/gui/designwidget.cc index b7c16d45..17e66e09 100644 --- a/gui/designwidget.cc +++ b/gui/designwidget.cc @@ -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);