From 2f599846a989ca5e3eb06aeeb6ba187568ae0175 Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Sun, 4 Feb 2024 16:47:31 +0100 Subject: [PATCH] (Android) Disabled the UserThemeDirectory setting --- es-core/src/Settings.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/es-core/src/Settings.cpp b/es-core/src/Settings.cpp index a5e5ee7b3..284a8c737 100644 --- a/es-core/src/Settings.cpp +++ b/es-core/src/Settings.cpp @@ -344,7 +344,9 @@ void Settings::setDefaults() mStringMap["ROMDirectory"] = {"", ""}; #endif mStringMap["UIMode_passkey"] = {"uuddlrlrba", "uuddlrlrba"}; +#if !defined(__ANDROID__) mStringMap["UserThemeDirectory"] = {"", ""}; +#endif mIntMap["LottieMaxFileCache"] = {150, 150}; mIntMap["LottieMaxTotalCache"] = {1024, 1024}; mIntMap["ScraperConnectionTimeout"] = {30, 30};