diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-08-26 23:48:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-26 23:48:09 +0200 |
commit | f98b32ff511f7c2e9aba6cf6359a6e567808b6ec (patch) | |
tree | 37f8bcce830c5b1694f1013bd095e1213dad651b /platform/android | |
parent | 580420d25a8727bac6ad683ebd38572d6efc5221 (diff) | |
parent | ffd0bb1d0243814e0438203ce7b8837974dc8ce0 (diff) |
Merge pull request #41549 from godotengine/revert-40484-android-virtual-keyboard-adjustment
Revert "Disable virtual keyboard focus adjustment on Android"
Diffstat (limited to 'platform/android')
-rw-r--r-- | platform/android/java/lib/src/org/godotengine/godot/Godot.java | 1 |
1 files changed, 0 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 72746e06f7..d9cd1ee364 100644 --- a/platform/android/java/lib/src/org/godotengine/godot/Godot.java +++ b/platform/android/java/lib/src/org/godotengine/godot/Godot.java @@ -483,7 +483,6 @@ public class Godot extends Fragment implements SensorEventListener, IDownloaderC final Activity activity = getActivity(); Window window = activity.getWindow(); window.addFlags(WindowManager.LayoutParams.FLAG_TURN_SCREEN_ON); - window.setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_NOTHING); mClipboard = (ClipboardManager)activity.getSystemService(Context.CLIPBOARD_SERVICE); pluginRegistry = GodotPluginRegistry.initializePluginRegistry(this); |