From 1ab3a37056769fc578f90ae9f0a1e5b1e18638d7 Mon Sep 17 00:00:00 2001 From: Integral Date: Sun, 19 May 2024 13:25:18 -0700 Subject: [PATCH] Add dialog for repeating password when exporting keys --- src/UserSettingsPage.cpp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/UserSettingsPage.cpp b/src/UserSettingsPage.cpp index 49fb6a59..0ba2386c 100644 --- a/src/UserSettingsPage.cpp +++ b/src/UserSettingsPage.cpp @@ -2127,11 +2127,25 @@ UserSettingsModel::exportSessionKeys() if (!ok) return; + auto repeatedPassword = QInputDialog::getText(nullptr, + tr("Repeat File Password"), + tr("Repeat the passphrase:"), + QLineEdit::Password, + QLatin1String(""), + &ok); + if (!ok) + return; + if (password.isEmpty()) { QMessageBox::warning(nullptr, tr("Error"), tr("The password cannot be empty")); 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(