From 96abd5766d94bd940f4b02d85f1474a1ef2197c0 Mon Sep 17 00:00:00 2001 From: Duke Leto Date: Fri, 22 Nov 2019 19:44:07 -0500 Subject: [PATCH] Enable autoshield+customfees by default and tweak transaction statusbar msg --- src/settings.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/settings.cpp b/src/settings.cpp index 442f2f2..ebb95f0 100644 --- a/src/settings.cpp +++ b/src/settings.cpp @@ -167,7 +167,7 @@ unsigned int Settings::getBTCPrice() { bool Settings::getAutoShield() { // Load from Qt settings - return QSettings().value("options/autoshield", false).toBool(); + return QSettings().value("options/autoshield", true).toBool(); } void Settings::setAutoShield(bool allow) { @@ -176,7 +176,7 @@ void Settings::setAutoShield(bool allow) { bool Settings::getAllowCustomFees() { // Load from the QT Settings. - return QSettings().value("options/customfees", false).toBool(); + return QSettings().value("options/customfees", true).toBool(); } void Settings::setAllowCustomFees(bool allow) { @@ -248,7 +248,7 @@ QString Settings::getZECUSDDisplayFormat(double bal) { return getZECDisplayFormat(bal); } -const QString Settings::txidStatusMessage = QString(QObject::tr("Tx submitted (right click to copy) txid:")); +const QString Settings::txidStatusMessage = QString(QObject::tr("Transaction submitted (right click to copy) txid:")); QString Settings::getTokenName() { if (Settings::getInstance()->isTestnet()) {