diff options
| author | 2023-06-07 07:41:58 +0000 | |
|---|---|---|
| committer | 2023-06-07 07:41:58 +0000 | |
| commit | f4f5ce437c9718f4cf898fe3d00e51ce85a75b13 (patch) | |
| tree | 5832e09ecafc1d68e0eb860a3aaf452703461afd | |
| parent | c645d5d2179af4c6bf48e01e1d68cbfa7cf9b3d2 (diff) | |
| parent | e614fc5e8eeac06cc6a9c2b8d2aeda921eb44907 (diff) | |
Merge "Use the same transaction to set position of the leash" into udc-dev
| -rw-r--r-- | services/core/java/com/android/server/wm/InsetsSourceProvider.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/services/core/java/com/android/server/wm/InsetsSourceProvider.java b/services/core/java/com/android/server/wm/InsetsSourceProvider.java index 1a322ff0196f..5e2618b00e2e 100644 --- a/services/core/java/com/android/server/wm/InsetsSourceProvider.java +++ b/services/core/java/com/android/server/wm/InsetsSourceProvider.java @@ -454,7 +454,7 @@ class InsetsSourceProvider { if (mSource.getType() == WindowInsets.Type.ime()) { setClientVisible(target.isRequestedVisible(WindowInsets.Type.ime())); } - final Transaction t = mDisplayContent.getSyncTransaction(); + final Transaction t = mWindowContainer.getSyncTransaction(); mWindowContainer.startAnimation(t, mAdapter, !mClientVisible /* hidden */, ANIMATION_TYPE_INSETS_CONTROL); |