mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-06 05:57:37 +03:00
Add CTRL+Enter to apply password generator changes (#6414)
* Fixes #6111
This commit is contained in:
parent
7fe0e2629c
commit
c0ae130656
3 changed files with 10 additions and 4 deletions
|
@ -22,6 +22,7 @@
|
|||
#include <QDir>
|
||||
#include <QKeyEvent>
|
||||
#include <QLineEdit>
|
||||
#include <QShortcut>
|
||||
#include <QTimer>
|
||||
|
||||
#include "core/Config.h"
|
||||
|
@ -46,6 +47,12 @@ PasswordGeneratorWidget::PasswordGeneratorWidget(QWidget* parent)
|
|||
m_ui->buttonCopy->setIcon(icons()->icon("clipboard-text"));
|
||||
m_ui->buttonClose->setShortcut(Qt::Key_Escape);
|
||||
|
||||
// Add two shortcuts to save the form CTRL+Enter and CTRL+S
|
||||
auto shortcut = new QShortcut(Qt::CTRL + Qt::Key_Return, this);
|
||||
connect(shortcut, &QShortcut::activated, this, [this] { applyPassword(); });
|
||||
shortcut = new QShortcut(Qt::CTRL + Qt::Key_S, this);
|
||||
connect(shortcut, &QShortcut::activated, this, [this] { applyPassword(); });
|
||||
|
||||
connect(m_ui->editNewPassword, SIGNAL(textChanged(QString)), SLOT(updateButtonsEnabled(QString)));
|
||||
connect(m_ui->editNewPassword, SIGNAL(textChanged(QString)), SLOT(updatePasswordStrength(QString)));
|
||||
connect(m_ui->buttonAdvancedMode, SIGNAL(toggled(bool)), SLOT(setAdvancedMode(bool)));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue