From ede3cc1459c3d0fd9501358ae91ca74bb7ee0047 Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Tue, 24 Jul 2018 20:30:18 +0200 Subject: Disable pips for now on ECP5 just to be able to work on other parts --- gui/designwidget.cc | 2 ++ 1 file changed, 2 insertions(+) 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 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"); -- cgit v1.2.3