(Android) Changed the theme directory parsing order

This commit is contained in:
Leon Styhre 2023-12-23 23:41:51 +01:00
parent c5caab290e
commit 458560bcd9

View file

@ -728,9 +728,9 @@ void ThemeData::populateThemes()
#endif
#if defined(__ANDROID__)
const std::vector<std::string> themePaths {
Utils::FileSystem::getProgramDataPath() + "/themes", userThemeDirectory,
Utils::FileSystem::getAppDataDirectory() + "/themes"};
const std::vector<std::string> themePaths {Utils::FileSystem::getProgramDataPath() + "/themes",
Utils::FileSystem::getAppDataDirectory() + "/themes",
userThemeDirectory};
#elif defined(__APPLE__)
const std::vector<std::string> themePaths {
Utils::FileSystem::getExePath() + "/themes",