Browse Source

Check updates by default on new profiles

Fixes #2653
pull/2663/head
tux3 10 years ago
parent
commit
c32e0e9f1b
No known key found for this signature in database
GPG Key ID: 7E086DD661263264
  1. 2
      src/persistence/settings.cpp

2
src/persistence/settings.cpp

@ -165,7 +165,7 @@ void Settings::loadGlobal() @@ -165,7 +165,7 @@ void Settings::loadGlobal()
currentProfileId = makeProfileId(currentProfile);
}
autoAwayTime = s.value("autoAwayTime", 10).toInt();
checkUpdates = s.value("checkUpdates", false).toBool();
checkUpdates = s.value("checkUpdates", true).toBool();
showWindow = s.value("showWindow", true).toBool();
showInFront = s.value("showInFront", false).toBool();
notifySound = s.value("notifySound", true).toBool();

Loading…
Cancel
Save