diff options
author | Clifford Wolf <clifford@clifford.at> | 2018-08-02 14:59:48 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2018-08-02 14:59:48 +0200 |
commit | fb06fd4653c8d990a0f19e10fc898402a1bae378 (patch) | |
tree | 18b4c17f7a1696b92f7d41313246c752db6a7b96 /gui | |
parent | fc882d73d6511be4325a7b9c16d6833263c06b10 (diff) | |
download | nextpnr-fb06fd4653c8d990a0f19e10fc898402a1bae378.tar.gz nextpnr-fb06fd4653c8d990a0f19e10fc898402a1bae378.tar.bz2 nextpnr-fb06fd4653c8d990a0f19e10fc898402a1bae378.zip |
Rename GUI "Graphics" tab to "Device"
Signed-off-by: Clifford Wolf <clifford@clifford.at>
Diffstat (limited to 'gui')
-rw-r--r-- | gui/basewindow.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/basewindow.cc b/gui/basewindow.cc index 6d5e97f5..b8bdd36a 100644 --- a/gui/basewindow.cc +++ b/gui/basewindow.cc @@ -77,7 +77,7 @@ BaseMainWindow::BaseMainWindow(std::unique_ptr<Context> context, QWidget *parent connect(centralTabWidget, SIGNAL(tabCloseRequested(int)), this, SLOT(closeTab(int)));
fpgaView = new FPGAViewWidget();
- centralTabWidget->addTab(fpgaView, "Graphics");
+ centralTabWidget->addTab(fpgaView, "Device");
centralTabWidget->tabBar()->tabButton(0, QTabBar::RightSide)->resize(0, 0);
connect(this, SIGNAL(contextChanged(Context *)), fpgaView, SLOT(newContext(Context *)));
|