We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents eccdb8f + 775dfc5 commit 9b50ea8Copy full SHA for 9b50ea8
platform/android/java/lib/src/org/godotengine/godot/Godot.kt
@@ -622,8 +622,8 @@ class Godot private constructor(val context: Context) {
622
}
623
624
override fun onEnd(animation: WindowInsetsAnimationCompat) {
625
- // Fixes issue on Android 7 and 8 where immersive mode gets auto disabled after the keyboard is hidden.
626
- if (useImmersive.get() && Build.VERSION.SDK_INT < Build.VERSION_CODES.P) {
+ // Fixes an issue on Android 10 and older where immersive mode gets auto disabled after the keyboard is hidden on some devices.
+ if (useImmersive.get() && Build.VERSION.SDK_INT < Build.VERSION_CODES.R) {
627
runOnHostThread {
628
enableImmersiveMode(true, true)
629
0 commit comments