Browse Source

fix(group): Change join leave message setting default to false

Matches the similar status change notification for 1:1 chats, and was the
original plan for this feature.
pull/6488/head
Anthony Bilinski 3 years ago
parent
commit
0df98ce64f
No known key found for this signature in database
GPG Key ID: 2AA8E0DA1B31FB3C
  1. 2
      src/persistence/settings.cpp

2
src/persistence/settings.cpp

@ -200,7 +200,7 @@ void Settings::loadGlobal() @@ -200,7 +200,7 @@ void Settings::loadGlobal()
lightTrayIcon = s.value("lightTrayIcon", false).toBool();
useEmoticons = s.value("useEmoticons", true).toBool();
statusChangeNotificationEnabled = s.value("statusChangeNotificationEnabled", false).toBool();
showGroupJoinLeaveMessages = s.value("showGroupJoinLeaveMessages", true).toBool();
showGroupJoinLeaveMessages = s.value("showGroupJoinLeaveMessages", false).toBool();
spellCheckingEnabled = s.value("spellCheckingEnabled", true).toBool();
themeColor = s.value("themeColor", 0).toInt();
style = s.value("style", "").toString();

Loading…
Cancel
Save