aboutsummaryrefslogtreecommitdiffstats
path: root/gui/basewindow.cc
diff options
context:
space:
mode:
authorMiodrag Milanovic <mmicko@gmail.com>2018-07-05 20:06:12 +0200
committerMiodrag Milanovic <mmicko@gmail.com>2018-07-05 20:06:12 +0200
commit6b904aefd36192dd94bef727634c287845ef5062 (patch)
treee7e328eca1e764dc4fca16c78683c4552b5f2c44 /gui/basewindow.cc
parent2dd7c77abde16518ed670716a15d6e14e3a5091d (diff)
downloadnextpnr-6b904aefd36192dd94bef727634c287845ef5062.tar.gz
nextpnr-6b904aefd36192dd94bef727634c287845ef5062.tar.bz2
nextpnr-6b904aefd36192dd94bef727634c287845ef5062.zip
Display nets and cells as well
Diffstat (limited to 'gui/basewindow.cc')
-rw-r--r--gui/basewindow.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/gui/basewindow.cc b/gui/basewindow.cc
index 5d2e21cc..2463027a 100644
--- a/gui/basewindow.cc
+++ b/gui/basewindow.cc
@@ -69,6 +69,7 @@ BaseMainWindow::BaseMainWindow(QWidget *parent) : QMainWindow(parent), ctx(nullp
splitter_h->addWidget(designview);
connect(this, SIGNAL(contextChanged(Context *)), designview, SLOT(newContext(Context *)));
+ connect(this, SIGNAL(updateTreeView()), designview, SLOT(updateTree()));
connect(designview, SIGNAL(info(std::string)), this, SLOT(writeInfo(std::string)));