CLI : basic entry manipulation commands. (#919)

* CLI : basic entry manipulation commands.

* Code review.
This commit is contained in:
louib 2017-09-06 09:14:41 -04:00 committed by GitHub
parent 1220b7d501
commit 6e1fd0694f
16 changed files with 661 additions and 9 deletions

View file

@ -98,7 +98,7 @@ void PasswordGeneratorWidget::loadSettings()
m_ui->checkBoxExtASCII->setChecked(config()->get("generator/EASCII", false).toBool());
m_ui->checkBoxExcludeAlike->setChecked(config()->get("generator/ExcludeAlike", true).toBool());
m_ui->checkBoxEnsureEvery->setChecked(config()->get("generator/EnsureEvery", true).toBool());
m_ui->spinBoxLength->setValue(config()->get("generator/Length", 16).toInt());
m_ui->spinBoxLength->setValue(config()->get("generator/Length", PasswordGenerator::DefaultLength).toInt());
// Diceware config
m_ui->spinBoxWordCount->setValue(config()->get("generator/WordCount", 6).toInt());