Browse Source

Revert "Close app on welcome back cancel"

This reverts commit 7398c70e2b.
pull/94/head
fekt 2 years ago
parent
commit
bf4b9e53ca
  1. 9
      src/mainwindow.cpp

9
src/mainwindow.cpp

@ -441,9 +441,6 @@ void MainWindow::closeEventpw(QCloseEvent* event) {
} else {
qDebug() << __func__ << ": invalid rpc object!";
}
// Close the app
this->close();
}
void MainWindow::encryptWallet() {
@ -474,7 +471,8 @@ void MainWindow::encryptWallet() {
QObject::connect(ed.txtConfirmPassword, &QLineEdit::textChanged, fnPasswordEdited);
QObject::connect(ed.txtPassword, &QLineEdit::textChanged, fnPasswordEdited);
if (d.exec() == QDialog::Accepted) {
if (d.exec() == QDialog::Accepted)
{
QString passphraseBlank = ed.txtPassword->text(); // data comes from user inputs
QString passphrase = QString("HUSH3") + passphraseBlank + QString("SDL");
@ -650,7 +648,8 @@ void MainWindow::removeWalletEncryptionStartUp() {
cl->loadConnection();
});
if (d.exec() == QDialog::Accepted) {
if (d.exec() == QDialog::Accepted)
{
QString passphraseBlank = ed.txtPassword->text(); // data comes from user inputs
QString passphrase = QString("HUSH3") + passphraseBlank + QString("SDL");

Loading…
Cancel
Save