diff options
| author | 2022-10-18 03:18:36 +0000 | |
|---|---|---|
| committer | 2022-10-18 03:18:36 +0000 | |
| commit | 1e35035dfb1dd7db42067a4499fc325f485c0eb7 (patch) | |
| tree | d84077daff8732da9fc2b25b9ba9f7cf5c442657 | |
| parent | 2907a8fa4267f1021f340d81b559d7fddac13a33 (diff) | |
| parent | 0c3317d7edbe1f3dfb8234a21aaa79a525e92300 (diff) | |
Merge "Shell-Transition: call maybeFinishStylusHandwriting when swiping on navBar"
| -rw-r--r-- | services/core/java/com/android/server/wm/WindowManagerService.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/services/core/java/com/android/server/wm/WindowManagerService.java b/services/core/java/com/android/server/wm/WindowManagerService.java index 5ac034b8954f..c17af3093e51 100644 --- a/services/core/java/com/android/server/wm/WindowManagerService.java +++ b/services/core/java/com/android/server/wm/WindowManagerService.java @@ -317,6 +317,7 @@ import com.android.server.LocalServices; import com.android.server.UiThread; import com.android.server.Watchdog; import com.android.server.input.InputManagerService; +import com.android.server.inputmethod.InputMethodManagerInternal; import com.android.server.pm.UserManagerInternal; import com.android.server.policy.WindowManagerPolicy; import com.android.server.policy.WindowManagerPolicy.ScreenOffListener; @@ -9289,6 +9290,7 @@ public class WindowManagerService extends IWindowManager.Stub recentsApp.getTask().setCanAffectSystemUiFlags(behindSystemBars); mWindowPlacerLocked.requestTraversal(); } + InputMethodManagerInternal.get().maybeFinishStylusHandwriting(); } } finally { Binder.restoreCallingIdentity(token); |