mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-23 11:28:49 +03:00
Merge pull request #1734 from Integral-Tech/confirm-passwd
Add dialog for repeating password when exporting keys
This commit is contained in:
commit
9eac31627a
1 changed files with 14 additions and 0 deletions
|
@ -2133,6 +2133,20 @@ UserSettingsModel::exportSessionKeys()
|
|||
return;
|
||||
}
|
||||
|
||||
auto repeatedPassword = QInputDialog::getText(nullptr,
|
||||
tr("Repeat File Password"),
|
||||
tr("Repeat the passphrase:"),
|
||||
QLineEdit::Password,
|
||||
QLatin1String(""),
|
||||
&ok);
|
||||
if (!ok)
|
||||
return;
|
||||
|
||||
if (password != repeatedPassword) {
|
||||
QMessageBox::warning(nullptr, tr("Error"), tr("Passwords don't match"));
|
||||
return;
|
||||
}
|
||||
|
||||
// Open file dialog to save the file.
|
||||
const QString homeFolder = QStandardPaths::writableLocation(QStandardPaths::HomeLocation);
|
||||
const QString fileName = QFileDialog::getSaveFileName(
|
||||
|
|
Loading…
Reference in a new issue