diff options
author | David Shah <davey1576@gmail.com> | 2018-07-31 14:36:17 +0200 |
---|---|---|
committer | David Shah <davey1576@gmail.com> | 2018-07-31 14:36:17 +0200 |
commit | e3a403fa2990602941ce756726488820182aff26 (patch) | |
tree | 5c9b0ffa149426d8ca39682bc9ba808a5ab843b1 /gui | |
parent | 32ff0059feeb2dd8187393c63dae7db59a2e5b43 (diff) | |
download | nextpnr-e3a403fa2990602941ce756726488820182aff26.tar.gz nextpnr-e3a403fa2990602941ce756726488820182aff26.tar.bz2 nextpnr-e3a403fa2990602941ce756726488820182aff26.zip |
ecp5: Disable Pip list in GUI for now
Signed-off-by: David Shah <davey1576@gmail.com>
Diffstat (limited to 'gui')
-rw-r--r-- | gui/treemodel.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gui/treemodel.cc b/gui/treemodel.cc index d79e38de..d42dc401 100644 --- a/gui/treemodel.cc +++ b/gui/treemodel.cc @@ -141,6 +141,7 @@ void ContextTreeModel::loadData(Context *ctx) QMap<QString, ContextTreeItem *> pip_items; // Add pips to tree +#ifndef ARCH_ECP5 for (auto pip : ctx->getPips()) { auto id = ctx->getPipName(pip); QStringList items = QString(id.c_str(ctx)).split("/"); @@ -164,6 +165,7 @@ void ContextTreeModel::loadData(Context *ctx) parent = pip_items[name]; } } +#endif pip_root->sort(); nets_root = new ContextTreeItem("Nets"); @@ -341,4 +343,4 @@ QList<QModelIndex> ContextTreeModel::search(QString text) } return list; } -NEXTPNR_NAMESPACE_END
\ No newline at end of file +NEXTPNR_NAMESPACE_END |