Default price feed to off and hide bg image in chat for now

This commit is contained in:
fekt
2024-04-14 23:44:36 -04:00
parent e1671d48c0
commit e50cb1e2c6
2 changed files with 5 additions and 4 deletions

View File

@@ -242,7 +242,8 @@ void Settings::setCheckForUpdates(bool allow) {
}
bool Settings::getAllowFetchPrices() {
return QSettings().value("options/allowfetchprices", true).toBool();
// now defaults to OFF, used to be ON
return QSettings().value("options/allowfetchprices", false).toBool();
}
void Settings::setAllowFetchPrices(bool allow) {