mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
Merge pull request #2156 from agilob:minor_default_settings_changes
change logging, typing notification and compact layout to enabled
This commit is contained in:
commit
aaf0774f35
@ -302,7 +302,7 @@ void Settings::loadPersonnal(Profile* profile)
|
||||
ps.endGroup();
|
||||
|
||||
ps.beginGroup("General");
|
||||
compactLayout = ps.value("compactLayout", false).toBool();
|
||||
compactLayout = ps.value("compactLayout", true).toBool();
|
||||
ps.endGroup();
|
||||
|
||||
ps.beginGroup("Circles");
|
||||
@ -321,8 +321,8 @@ void Settings::loadPersonnal(Profile* profile)
|
||||
ps.endGroup();
|
||||
|
||||
ps.beginGroup("Privacy");
|
||||
typingNotification = ps.value("typingNotification", false).toBool();
|
||||
enableLogging = ps.value("enableLogging", false).toBool();
|
||||
typingNotification = ps.value("typingNotification", true).toBool();
|
||||
enableLogging = ps.value("enableLogging", true).toBool();
|
||||
ps.endGroup();
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user