Skip to content

Commit

Permalink
- multipage: fixed global application folder path in relative file lo…
Browse files Browse the repository at this point in the history
…ader
  • Loading branch information
christoph-hart committed Aug 13, 2024
1 parent d5c7caa commit 9947e60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hi_tools/hi_multipage/ActionComponents.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -572,7 +572,7 @@ Result RelativeFileLoader::onAction()
auto product = rootDialog.getGlobalProperty(mpid::ProjectName).toString();
auto useGlobal = rootDialog.useGlobalAppDataDirectory();

f = File::getSpecialLocation(useGlobal ? File::globalApplicationsDirectory : File::userApplicationDataDirectory);
f = File::getSpecialLocation(useGlobal ? File::commonApplicationDataDirectory : File::userApplicationDataDirectory);

#if JUCE_MAC
f = f.getChildFile("Application Support");
Expand Down

0 comments on commit 9947e60

Please sign in to comment.