Revert "Set DiscordRPC OFF by default (#4109)"

This reverts commit 516be14a6b.
This commit is contained in:
James Rowe 2018-08-20 10:34:58 -06:00 committed by GitHub
parent 516be14a6b
commit b3ca900ba7
1 changed files with 2 additions and 2 deletions

View File

@ -208,7 +208,7 @@ void Config::ReadValues() {
qt_config->beginGroup("UI");
UISettings::values.theme = ReadSetting("theme", UISettings::themes[0].second).toString();
UISettings::values.enable_discord_presence =
ReadSetting("enable_discord_presence", false).toBool();
ReadSetting("enable_discord_presence", true).toBool();
qt_config->beginGroup("Updater");
UISettings::values.check_for_update_on_start =
@ -442,7 +442,7 @@ void Config::SaveValues() {
qt_config->beginGroup("UI");
WriteSetting("theme", UISettings::values.theme, UISettings::themes[0].second);
WriteSetting("enable_discord_presence", UISettings::values.enable_discord_presence, false);
WriteSetting("enable_discord_presence", UISettings::values.enable_discord_presence, true);
qt_config->beginGroup("Updater");
WriteSetting("check_for_update_on_start", UISettings::values.check_for_update_on_start, true);