Skip to content
This repository has been archived by the owner on Feb 12, 2023. It is now read-only.

Commit

Permalink
fix(settings): correct default value of dateformat
Browse files Browse the repository at this point in the history
incorrect values of a default date format field remains empty in form
fix #3707
  • Loading branch information
PKEv committed Sep 13, 2016
1 parent 077a844 commit e794acb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/persistence/settings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit e794acb

Please sign in to comment.