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

fix(settings): correct default value of dateformat

incorrect values of a default date format field remains empty in form
fix #3707
This commit is contained in:
PKEv 2016-09-13 14:35:47 +03:00
parent 077a844461
commit e794acbccc

View File

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