aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiodrag Milanovic <mmicko@gmail.com>2018-07-24 20:30:18 +0200
committerMiodrag Milanovic <mmicko@gmail.com>2018-07-24 20:30:18 +0200
commitede3cc1459c3d0fd9501358ae91ca74bb7ee0047 (patch)
treeedc9f84105719a95051512bdd914ec110c4af9df
parentc9c3d970c918f9c91d9886467d7957cbc49bd6b1 (diff)
downloadnextpnr-ede3cc1459c3d0fd9501358ae91ca74bb7ee0047.tar.gz
nextpnr-ede3cc1459c3d0fd9501358ae91ca74bb7ee0047.tar.bz2
nextpnr-ede3cc1459c3d0fd9501358ae91ca74bb7ee0047.zip
Disable pips for now on ECP5 just to be able to work on other parts
-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");