diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2022-11-17 14:44:53 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2022-11-17 14:44:53 +0100 |
commit | 49cc12bf89689c35f0d867790a25fb3112899a6d (patch) | |
tree | b84eb203d66c1effc5587af77d05aec046e1505f /platform/android/java | |
parent | d33e5846079df5152150d75006687599c8d533f8 (diff) | |
parent | eb7c3e1ad395c2dcfe9e5b91c06089265c9aef2c (diff) |
Merge pull request #68786 from akien-mga/android-fix-keep_screen_on
Android: Fix parsing `keep_screen_on` setting
Diffstat (limited to 'platform/android/java')
-rw-r--r-- | platform/android/java/lib/src/org/godotengine/godot/Godot.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/android/java/lib/src/org/godotengine/godot/Godot.java b/platform/android/java/lib/src/org/godotengine/godot/Godot.java index 92e5e59496..f73f8aaa31 100644 --- a/platform/android/java/lib/src/org/godotengine/godot/Godot.java +++ b/platform/android/java/lib/src/org/godotengine/godot/Godot.java @@ -299,7 +299,7 @@ public class Godot extends Fragment implements SensorEventListener, IDownloaderC for (GodotPlugin plugin : pluginRegistry.getAllPlugins()) { plugin.onRegisterPluginWithGodotNative(); } - setKeepScreenOn("True".equals(GodotLib.getGlobal("display/window/energy_saving/keep_screen_on"))); + setKeepScreenOn("true".equals(GodotLib.getGlobal("display/window/energy_saving/keep_screen_on"))); }); // Include the returned non-null views in the Godot view hierarchy. |