diff options
author | Miodrag Milanovic <mmicko@gmail.com> | 2018-07-20 13:27:21 +0200 |
---|---|---|
committer | Miodrag Milanovic <mmicko@gmail.com> | 2018-07-20 13:27:21 +0200 |
commit | 53034959f338c952f4cf905890e44aad2ba202ae (patch) | |
tree | bacf16dd8118ce63e75ec90d2653ea863c145239 /gui | |
parent | 3bad9c26cff1ba2da7f1810e5915246874780744 (diff) | |
download | nextpnr-53034959f338c952f4cf905890e44aad2ba202ae.tar.gz nextpnr-53034959f338c952f4cf905890e44aad2ba202ae.tar.bz2 nextpnr-53034959f338c952f4cf905890e44aad2ba202ae.zip |
Start adding bitstream reading for ice40
Diffstat (limited to 'gui')
-rw-r--r-- | gui/designwidget.cc | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/gui/designwidget.cc b/gui/designwidget.cc index 4123bf30..d28b843b 100644 --- a/gui/designwidget.cc +++ b/gui/designwidget.cc @@ -334,16 +334,7 @@ void DesignWidget::newContext(Context *ctx) for (auto pip : nameToItem[2].toStdMap()) {
pip_root->addChild(pip.second);
}
-
- // Add nets to tree
- nets_root = new QTreeWidgetItem(treeWidget);
- nets_root->setText(0, "Nets");
- treeWidget->insertTopLevelItem(0, nets_root);
-
- // Add cells to tree
- cells_root = new QTreeWidgetItem(treeWidget);
- cells_root->setText(0, "Cells");
- treeWidget->insertTopLevelItem(0, cells_root);
+ updateTree();
}
void DesignWidget::updateTree()
|