From 8a840d29c806f331aa81acf8de1768e4b55bb104 Mon Sep 17 00:00:00 2001 From: Charles <18726788+csharpee@users.noreply.github.com> Date: Wed, 10 Jun 2020 01:45:27 -0400 Subject: [PATCH] Fixed encrypt wallet display bug; commented out line. On entering text in 2nd field, caused long sentence to display that was unreadable. --- src/mainwindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 6eba199..3e9d2a0 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -386,7 +386,7 @@ void MainWindow::encryptWallet() { ed.lblPasswordMatch->setText(""); ed.buttonBox->button(QDialogButtonBox::Ok)->setEnabled(true); } else { - ed.lblPasswordMatch->setText(tr("Passphrase don't match or You have entered too few letters (16 minimum)")); + //ed.lblPasswordMatch->setText(tr("Passphrase don't match or You have entered too few letters (16 minimum)")); ed.buttonBox->button(QDialogButtonBox::Ok)->setEnabled(false); } @@ -445,7 +445,7 @@ void MainWindow::encryptWallet() { address.rename(dir.filePath("addresslabels.datBackup")); QMessageBox::information(this, tr("Wallet Encryption Success"), - QString("Successfully encrypt your wallet"), + QString("Successfully encrypted your wallet"), QMessageBox::Ok ); }