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

Merge pull request #3713

PKEv (1):
      fix(settings): correct default value of dateformat
This commit is contained in:
Diadlo 2016-09-15 22:51:00 +03:00
commit 212ab1d416
No known key found for this signature in database
GPG Key ID: 5AF9F2E29107C727

View File

@ -252,7 +252,7 @@ void Settings::loadGlobal()
firstColumnHandlePos = s.value("firstColumnHandlePos", 50).toInt();
secondColumnHandlePosFromRight = s.value("secondColumnHandlePosFromRight", 50).toInt();
timestampFormat = s.value("timestampFormat", "hh:mm:ss").toString();
dateFormat = s.value("dateFormat", "dddd, MMMM d, yyyy").toString();
dateFormat = s.value("dateFormat", "yyyy-MM-dd").toString();
minimizeOnClose = s.value("minimizeOnClose", false).toBool();
minimizeToTray = s.value("minimizeToTray", false).toBool();
lightTrayIcon = s.value("lightTrayIcon", false).toBool();