diff options
author | Fredia Huya-Kouadio <fhuyakou@gmail.com> | 2024-06-24 06:14:27 -0700 |
---|---|---|
committer | Fredia Huya-Kouadio <fhuyakou@gmail.com> | 2024-06-24 06:14:27 -0700 |
commit | 9e9ffdd1bbaaefe19c7554809f2dc1e0ed8af368 (patch) | |
tree | eca59f8eeade5fa6500bcbfef9f7c87160d30e6a /platform/android | |
parent | e78dc83ee8fc327a4586db0dde576bbefc2b2f8d (diff) | |
download | redot-engine-9e9ffdd1bbaaefe19c7554809f2dc1e0ed8af368.tar.gz |
Revert hiding of custom templates under the `Advanced Options` toggle
Diffstat (limited to 'platform/android')
-rw-r--r-- | platform/android/export/export_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/android/export/export_plugin.cpp b/platform/android/export/export_plugin.cpp index ad00659257..479158c91f 100644 --- a/platform/android/export/export_plugin.cpp +++ b/platform/android/export/export_plugin.cpp @@ -1920,7 +1920,7 @@ bool EditorExportPlatformAndroid::get_export_option_visibility(const EditorExpor } if (p_option == "custom_template/debug" || p_option == "custom_template/release") { // The APK templates are ignored if Gradle build is enabled. - return advanced_options_enabled && !bool(p_preset->get("gradle_build/use_gradle_build")); + return !bool(p_preset->get("gradle_build/use_gradle_build")); } // Hide .NET embedding option (always enabled). |