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:
committed by
Jonathan White
parent
4c10e516c3
commit
eeba485f95
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user