From eeba485f954b4e7fc01a6e9f2ac60aa510db414b Mon Sep 17 00:00:00 2001 From: jus78help <76913929+jus78help@users.noreply.github.com> Date: Mon, 7 Jun 2021 03:41:14 -0500 Subject: [PATCH] Removed unnecessary characters from HEX excluded chars The HEX button automatically unselects `selectBoxLower` therefore there is no need to also add `ghijklmnopqrstuvwxyz` in the excluded characters text field. --- src/gui/PasswordGeneratorWidget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/PasswordGeneratorWidget.cpp b/src/gui/PasswordGeneratorWidget.cpp index 17cd64d8..acb93b63 100644 --- a/src/gui/PasswordGeneratorWidget.cpp +++ b/src/gui/PasswordGeneratorWidget.cpp @@ -349,7 +349,7 @@ void PasswordGeneratorWidget::setAdvancedMode(bool advanced) void PasswordGeneratorWidget::excludeHexChars() { - m_ui->editExcludedChars->setText("GHIJKLMNOPQRSTUVWXYZghijklmnopqrstuvwxyz"); + m_ui->editExcludedChars->setText("GHIJKLMNOPQRSTUVWXYZ"); m_ui->checkBoxNumbers->setChecked(true); m_ui->checkBoxUpper->setChecked(true);