diff --git a/src/core/UBSettings.cpp b/src/core/UBSettings.cpp index 63f06d6b..8d01f3c2 100644 --- a/src/core/UBSettings.cpp +++ b/src/core/UBSettings.cpp @@ -763,6 +763,7 @@ QString UBSettings::uniboardDataDirectory() } QString qtDataPath = UBFileSystemUtils::normalizeFilePath(UBDesktopServices::storageLocation(QDesktopServices::DataLocation)); qtDataPath.replace("/Open-Sankore", ""); + qDebug() << qtDataPath; return qtDataPath; } diff --git a/src/frameworks/UBDesktopServices_mac.cpp b/src/frameworks/UBDesktopServices_mac.cpp index a2b9a019..839502dc 100644 --- a/src/frameworks/UBDesktopServices_mac.cpp +++ b/src/frameworks/UBDesktopServices_mac.cpp @@ -96,7 +96,7 @@ QString UBDesktopServices::storageLocation(StandardLocation type) QString path = getFullPath(ref); if (QDesktopServices::DataLocation == type || QDesktopServices::CacheLocation == type) - path += "/Sankore/Sankore"; + path += "/Sankore/Open-Sankore"; return path; }