Browse Source

Default autoshield and customfees to true

pull/103/head
Jonathan "Duke" Leto 5 years ago
parent
commit
bf2db75844
  1. 4
      src/settings.cpp

4
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) {

Loading…
Cancel
Save