1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-07 12:30:27 +00:00

Remove duplicate resizable settings

(cherry picked from commit f1a7caf9bb)
This commit is contained in:
Fredia Huya-Kouadio
2022-04-04 09:18:07 -07:00
committed by Rémi Verschelde
parent 4ff726b933
commit a3b445d7e8
4 changed files with 3 additions and 7 deletions

View File

@@ -259,7 +259,7 @@ String _get_activity_tag(const Ref<EditorExportPreset> &p_preset) {
"android:resizeableActivity=\"%s\">\n",
bool_to_string(p_preset->get("package/exclude_from_recents")),
orientation,
bool_to_string(p_preset->get("screen/is_resizeable")));
bool_to_string(bool(GLOBAL_GET("display/window/size/resizable"))));
if (uses_xr) {
manifest_activity_text += " <meta-data tools:node=\"replace\" android:name=\"com.oculus.vr.focusaware\" android:value=\"true\" />\n";
} else {