1
0
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:
Zetok Zalbavar 2015-08-31 12:01:53 +01:00
commit aaf0774f35
No known key found for this signature in database
GPG Key ID: C953D3880212068A

View File

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