Details
-
Bug
-
Resolution: Unresolved
-
P3: Somewhat important
-
None
-
6.9.0
-
None
Description
Currently QSettings for macOS still saves to ~/.config. I saw this in qsettings.cpp:
static QString make_user_path() { #ifndef QSETTINGS_USE_QSTANDARDPATHS // Non XDG platforms (OS X, iOS, Android...) have used this code path erroneously // for some time now. Moving away from that would require migrating existing settings. // The migration has already been done for Android. return make_user_path_without_qstandard_paths(); #else
When will QSettings use GenericConfigLocation? Thanks.