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:
jus78help 2021-06-07 03:41:14 -05:00 committed by Jonathan White
parent 4c10e516c3
commit eeba485f95

View File

@ -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);