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:
parent
077a844461
commit
e794acbccc
|
@ -249,7 +249,7 @@ void Settings::loadGlobal()
|
||||||
firstColumnHandlePos = s.value("firstColumnHandlePos", 50).toInt();
|
firstColumnHandlePos = s.value("firstColumnHandlePos", 50).toInt();
|
||||||
secondColumnHandlePosFromRight = s.value("secondColumnHandlePosFromRight", 50).toInt();
|
secondColumnHandlePosFromRight = s.value("secondColumnHandlePosFromRight", 50).toInt();
|
||||||
timestampFormat = s.value("timestampFormat", "hh:mm:ss").toString();
|
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();
|
minimizeOnClose = s.value("minimizeOnClose", false).toBool();
|
||||||
minimizeToTray = s.value("minimizeToTray", false).toBool();
|
minimizeToTray = s.value("minimizeToTray", false).toBool();
|
||||||
lightTrayIcon = s.value("lightTrayIcon", false).toBool();
|
lightTrayIcon = s.value("lightTrayIcon", false).toBool();
|
||||||
|
|
Loading…
Reference in New Issue
Block a user