summaryrefslogtreecommitdiffstats
path: root/platform/android/export/export_plugin.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-06-24 17:49:10 +0200
committerRémi Verschelde <rverschelde@gmail.com>2024-06-24 17:49:10 +0200
commit2ac72b7402dda19435bdf441a05fb8196686ad65 (patch)
tree93201ce01e728e7cf44521bc79294389794a8587 /platform/android/export/export_plugin.cpp
parented3eb6b643b38b8e1eb25f8daeab5638ad1f02d0 (diff)
parent9e9ffdd1bbaaefe19c7554809f2dc1e0ed8af368 (diff)
downloadredot-engine-2ac72b7402dda19435bdf441a05fb8196686ad65.tar.gz
Merge pull request #93551 from m4gr3d/show_android_custom_template_by_default
Android: Revert hiding of custom templates under the `Advanced Options` toggle
Diffstat (limited to 'platform/android/export/export_plugin.cpp')
-rw-r--r--platform/android/export/export_plugin.cpp2
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).