diff options
author | Eddie Hung <eddie.hung+gitlab@gmail.com> | 2018-07-21 19:04:14 +0000 |
---|---|---|
committer | Eddie Hung <eddie.hung+gitlab@gmail.com> | 2018-07-21 19:04:14 +0000 |
commit | dfdeb21690181044a95c2b2d64c197c999507b0c (patch) | |
tree | a7c74ddc6c085830880ceffdb9f15d8c84afc3fe /gui/basewindow.cc | |
parent | 6e7ba2a2be87bb1e0f323128283a87f59af596b7 (diff) | |
parent | f438fc615b829170679971110b5d1bb57fba6a86 (diff) | |
download | nextpnr-dfdeb21690181044a95c2b2d64c197c999507b0c.tar.gz nextpnr-dfdeb21690181044a95c2b2d64c197c999507b0c.tar.bz2 nextpnr-dfdeb21690181044a95c2b2d64c197c999507b0c.zip |
Merge branch 'master' into 'master'
Master
See merge request eddiehung/nextpnr!6
Diffstat (limited to 'gui/basewindow.cc')
-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 4a225bd6..78c2fe3a 100644 --- a/gui/basewindow.cc +++ b/gui/basewindow.cc @@ -116,7 +116,7 @@ void BaseMainWindow::createMenusAndBars() actionOpen->setStatusTip("Open an existing project file");
connect(actionOpen, SIGNAL(triggered()), this, SLOT(open_proj()));
- QAction *actionSave = new QAction("Save", this);
+ actionSave = new QAction("Save", this);
actionSave->setIcon(QIcon(":/icons/resources/save.png"));
actionSave->setShortcuts(QKeySequence::Save);
actionSave->setStatusTip("Save existing project to disk");
|