diff options
author | Sergiusz Bazanski <q3k@q3k.org> | 2018-07-21 20:00:42 +0100 |
---|---|---|
committer | Sergiusz Bazanski <q3k@q3k.org> | 2018-07-21 20:00:42 +0100 |
commit | 6588aafdb8038625e8ce0cc265a2851cbb16b1c9 (patch) | |
tree | 44bc45b6ae06d52c60d15431db6c47feff036aff /gui/basewindow.cc | |
parent | be14e161ae1963203e380bfbe02cfaeda828f838 (diff) | |
parent | f438fc615b829170679971110b5d1bb57fba6a86 (diff) | |
download | nextpnr-6588aafdb8038625e8ce0cc265a2851cbb16b1c9.tar.gz nextpnr-6588aafdb8038625e8ce0cc265a2851cbb16b1c9.tar.bz2 nextpnr-6588aafdb8038625e8ce0cc265a2851cbb16b1c9.zip |
Merge branch 'master' of gitlab.com:SymbioticEDA/nextpnr into q3k/lock-2-electric-boogaloo
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");
|