Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src/gui
diff options
context:
space:
mode:
authorJonathan White <support@dmapps.us>2022-02-24 01:57:52 +0300
committerJonathan White <support@dmapps.us>2022-02-24 01:57:52 +0300
commitf3b0fe46b4dc4438488fc3acf790a7b0123a2196 (patch)
tree8e5e667b867389c05db94c85b25889f941a5fda5 /src/gui
parent7284a8062a3eef681d529e2e56c3b66a82b09337 (diff)
Fix excluding characters in password generator
* Fixes #7451
Diffstat (limited to 'src/gui')
-rw-r--r--src/gui/PasswordGeneratorWidget.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/PasswordGeneratorWidget.cpp b/src/gui/PasswordGeneratorWidget.cpp
index 1fd6cc972..d398b5c9b 100644
--- a/src/gui/PasswordGeneratorWidget.cpp
+++ b/src/gui/PasswordGeneratorWidget.cpp
@@ -586,7 +586,7 @@ void PasswordGeneratorWidget::updateGenerator()
if (m_ui->buttonAdvancedMode->isChecked()) {
m_passwordGenerator->setCharClasses(classes);
m_passwordGenerator->setCustomCharacterSet(m_ui->editAdditionalChars->text());
- m_passwordGenerator->setCustomCharacterSet(m_ui->editExcludedChars->text());
+ m_passwordGenerator->setExcludedCharacterSet(m_ui->editExcludedChars->text());
} else {
m_passwordGenerator->setCharClasses(classes);
}