Browse Source

Fixed encrypt wallet display bug; commented out line. On entering text in 2nd field, caused long sentence to display that was unreadable.

pull/130/head
Charles 4 years ago
parent
commit
8a840d29c8
No known key found for this signature in database GPG Key ID: 251655CC546D9787
  1. 4
      src/mainwindow.cpp

4
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
);
}

Loading…
Cancel
Save