mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-01-26 22:36:59 -05:00
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.
This commit is contained in:
parent
4c10e516c3
commit
eeba485f95
@ -349,7 +349,7 @@ void PasswordGeneratorWidget::setAdvancedMode(bool advanced)
|
|||||||
|
|
||||||
void PasswordGeneratorWidget::excludeHexChars()
|
void PasswordGeneratorWidget::excludeHexChars()
|
||||||
{
|
{
|
||||||
m_ui->editExcludedChars->setText("GHIJKLMNOPQRSTUVWXYZghijklmnopqrstuvwxyz");
|
m_ui->editExcludedChars->setText("GHIJKLMNOPQRSTUVWXYZ");
|
||||||
m_ui->checkBoxNumbers->setChecked(true);
|
m_ui->checkBoxNumbers->setChecked(true);
|
||||||
m_ui->checkBoxUpper->setChecked(true);
|
m_ui->checkBoxUpper->setChecked(true);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user