From 67c6e10f5fbb449300899109d2ff385670286d2f Mon Sep 17 00:00:00 2001 From: thez3ro Date: Wed, 8 Mar 2017 16:22:23 +0100 Subject: [PATCH] add underscore as separator --- 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 59f444ebd..2bc528e19 100644 --- a/src/gui/PasswordGeneratorWidget.cpp +++ b/src/gui/PasswordGeneratorWidget.cpp @@ -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);