aboutsummaryrefslogtreecommitdiffstats
path: root/gui/designwidget.cc
diff options
context:
space:
mode:
authorDavid Shah <davey1576@gmail.com>2018-07-24 21:25:41 +0200
committerDavid Shah <davey1576@gmail.com>2018-07-24 21:25:41 +0200
commit5a7e7b2d039cdad68c6651e67765d7adb2282f25 (patch)
tree398eae8d7dccb7acc5e88022fdb1df48552fdaa4 /gui/designwidget.cc
parent6a7f3cd336ebb35389d0c4ee4f8b457d2a2e026a (diff)
parentede3cc1459c3d0fd9501358ae91ca74bb7ee0047 (diff)
downloadnextpnr-5a7e7b2d039cdad68c6651e67765d7adb2282f25.tar.gz
nextpnr-5a7e7b2d039cdad68c6651e67765d7adb2282f25.tar.bz2
nextpnr-5a7e7b2d039cdad68c6651e67765d7adb2282f25.zip
Merge branch 'master' of gitlab.com:SymbioticEDA/nextpnr
Diffstat (limited to 'gui/designwidget.cc')
-rw-r--r--gui/designwidget.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/gui/designwidget.cc b/gui/designwidget.cc
index e63ee937..7e8e2840 100644
--- a/gui/designwidget.cc
+++ b/gui/designwidget.cc
@@ -312,6 +312,7 @@ void DesignWidget::newContext(Context *ctx)
QMap<QString, QTreeWidgetItem *> pip_items;
pip_root->setText(0, "Pips");
treeWidget->insertTopLevelItem(0, pip_root);
+#ifndef ARCH_ECP5
if (ctx) {
for (auto pip : ctx->getPips()) {
auto id = ctx->getPipName(pip);
@@ -338,6 +339,7 @@ void DesignWidget::newContext(Context *ctx)
for (auto pip : nameToItem[2].toStdMap()) {
pip_root->addChild(pip.second);
}
+#endif
nets_root = new QTreeWidgetItem(treeWidget);
nets_root->setText(0, "Nets");