Support Ctrl+Enter shortcut on all dialogs with QPushButtonBox (#3039)

* Remove specific action from EditEntryWidget
* Implement key handling at the lowest level
* Fix #3036
This commit is contained in:
Jonathan White 2019-04-20 11:54:25 -04:00 committed by Janek Bevendorff
parent cb442f8c6e
commit acd6847cd4
2 changed files with 2 additions and 6 deletions

View file

@ -152,11 +152,6 @@ 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(commitEntry()));
this->addAction(action);
m_mainUi->passwordGenerator->hide();
m_mainUi->passwordGenerator->reset();
}