diff options
author | Eddie Hung <eddie.hung+gitlab@gmail.com> | 2018-07-21 20:08:53 +0000 |
---|---|---|
committer | Eddie Hung <eddie.hung+gitlab@gmail.com> | 2018-07-21 20:08:53 +0000 |
commit | eeb93d6eda613c0946867118c1ff93f2462e417f (patch) | |
tree | ee25b6376879c7add61b02a73a882d8518353afe /gui/basewindow.cc | |
parent | 1f6897733b57f03cf7f5ccab46c27de811d42167 (diff) | |
parent | 926c186ec78efb086364a05ba7e83e68fa116301 (diff) | |
download | nextpnr-eeb93d6eda613c0946867118c1ff93f2462e417f.tar.gz nextpnr-eeb93d6eda613c0946867118c1ff93f2462e417f.tar.bz2 nextpnr-eeb93d6eda613c0946867118c1ff93f2462e417f.zip |
Merge branch 'redist_slack' into 'redist_slack'
Redist slack
See merge request SymbioticEDA/nextpnr!14
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");
|