diff options
author | Sergiusz Bazanski <q3k@q3k.org> | 2018-07-25 11:32:45 +0100 |
---|---|---|
committer | Sergiusz Bazanski <q3k@q3k.org> | 2018-07-25 11:32:45 +0100 |
commit | 14a501969af0023c7396d41a0116e706c68cf5ed (patch) | |
tree | e16a50bf122faed323bce936255e7e09b6201242 /gui/designwidget.cc | |
parent | c554ab1ef01c8cb5f4a35040bc3fce106be03559 (diff) | |
parent | e39290b71299843eff858fb51543b99a06178a1d (diff) | |
download | nextpnr-14a501969af0023c7396d41a0116e706c68cf5ed.tar.gz nextpnr-14a501969af0023c7396d41a0116e706c68cf5ed.tar.bz2 nextpnr-14a501969af0023c7396d41a0116e706c68cf5ed.zip |
Merge branch 'master' of gitlab.com:SymbioticEDA/nextpnr into q3k/pll-pads
Diffstat (limited to 'gui/designwidget.cc')
-rw-r--r-- | gui/designwidget.cc | 2 |
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");
|