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:
parent
6f9123705a
commit
0df98ce64f
|
@ -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…
Reference in New Issue
Block a user