1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

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.
This commit is contained in:
Anthony Bilinski 2022-02-21 01:57:04 -08:00
parent 6f9123705a
commit 0df98ce64f
No known key found for this signature in database
GPG Key ID: 2AA8E0DA1B31FB3C

View File

@ -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();