add underscore as separator

This commit is contained in:
thez3ro 2017-03-08 16:22:23 +01:00
parent 98e2c311c3
commit 67c6e10f5f
No known key found for this signature in database
GPG Key ID: F628F9E41DD7C073

View File

@ -63,7 +63,7 @@ PasswordGeneratorWidget::PasswordGeneratorWidget(QWidget* parent)
m_ui->strengthLabel->setFont(defaultFont);
}
m_ui->comboBoxWordSeparator->addItems(QStringList() << " " << "#" << ";" << "-" << ":" << "." << "@");
m_ui->comboBoxWordSeparator->addItems(QStringList() << " " << "#" << "_" << ";" << "-" << ":" << "." << "@");
QDir path(filePath()->dataPath("wordlists/"));
QStringList files = path.entryList(QDir::Files);