Merge pull request #8 from daniellandau/save-with-ctrl-return

Save entry with ctrl+return keyboard shortcut
This commit is contained in:
Jonathan 2016-10-02 10:10:33 -04:00 committed by GitHub
commit 2146392a2f

View File

@ -98,6 +98,11 @@ void EditEntryWidget::setupMain()
m_mainUi->expirePresets->setMenu(createPresetsMenu());
connect(m_mainUi->expirePresets->menu(), SIGNAL(triggered(QAction*)), this, SLOT(useExpiryPreset(QAction*)));
QAction *action = new QAction(this);
action->setShortcut(Qt::CTRL | Qt::Key_Return);
connect(action, SIGNAL(triggered()), this, SLOT(saveEntry()));
this->addAction(action);
m_mainUi->passwordGenerator->hide();
m_mainUi->passwordGenerator->reset();
}