1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-05 12:10:55 +00:00

Fix keep screen on property path for Android/iOS/UWP

This commit is contained in:
volzhs
2018-07-16 23:09:22 +09:00
parent c0c243ac5c
commit d18235bc38
3 changed files with 3 additions and 3 deletions

View File

@@ -297,7 +297,7 @@ public class Godot extends Activity implements SensorEventListener, IDownloaderC
runOnUiThread(new Runnable() {
@Override
public void run() {
view.setKeepScreenOn("True".equals(GodotLib.getGlobal("display/driver/keep_screen_on")));
view.setKeepScreenOn("True".equals(GodotLib.getGlobal("display/window/energy_saving/keep_screen_on")));
}
});
}