summaryrefslogtreecommitdiff
path: root/pcr/freefilesync/revert_xdg_config_path.patch
diff options
context:
space:
mode:
authorbill-auger <mr.j.spam.me@gmail.com>2021-01-26 21:03:47 -0500
committerbill-auger <mr.j.spam.me@gmail.com>2021-01-27 03:05:56 -0500
commit7471bf5b106f788cab088d06a163fc86021b681c (patch)
tree2c62883c54d485108059f28a8ad9918f077e9c32 /pcr/freefilesync/revert_xdg_config_path.patch
parenta4d47df007522722070e167a435398175a1ae162 (diff)
downloadabslibre-7471bf5b106f788cab088d06a163fc86021b681c.tar.gz
abslibre-7471bf5b106f788cab088d06a163fc86021b681c.tar.bz2
abslibre-7471bf5b106f788cab088d06a163fc86021b681c.zip
[freefilesync]: upgrade to v11.4
Diffstat (limited to 'pcr/freefilesync/revert_xdg_config_path.patch')
-rw-r--r--pcr/freefilesync/revert_xdg_config_path.patch10
1 files changed, 10 insertions, 0 deletions
diff --git a/pcr/freefilesync/revert_xdg_config_path.patch b/pcr/freefilesync/revert_xdg_config_path.patch
new file mode 100644
index 000000000..1802311e6
--- /dev/null
+++ b/pcr/freefilesync/revert_xdg_config_path.patch
@@ -0,0 +1,10 @@
+--- a/FreeFileSync/Source/ffs_paths.cpp 2019-11-19 23:52:20.000000000 +0100
++++ b/FreeFileSync/Source/ffs_paths.cpp 2019-11-24 18:14:17.627328553 +0100
+@@ -80,6 +80,4 @@
+
+- //OS standard path (XDG layout): ~/.config/FreeFileSync
+- //wxBug: wxStandardPaths::GetUserDataDir() does not honor FileLayout_XDG flag
+- wxStandardPaths::Get().SetFileLayout(wxStandardPaths::FileLayout_XDG);
+- const Zstring cfgFolderPath = appendSeparator(utfTo<Zstring>(wxStandardPaths::Get().GetUserConfigDir())) + "FreeFileSync";
++ //OS standard path (classic layout): ~/.FreeFileSync
++ Zstring cfgFolderPath = utfTo<Zstring>(wxStandardPaths::Get().GetUserDataDir());