summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
author Mykola Podolian <mpodolian@google.com> 2025-02-19 09:39:00 -0800
committer Android (Google) Code Review <android-gerrit@google.com> 2025-02-19 09:39:00 -0800
commitfbfa2a661bc3452c961c9bc3d284a861e95f72b5 (patch)
tree59f5ae83d392c0bb2bf4ad3ea5aa4a0b6aa11b29 /libs
parenta32d24ce766724bee909108ef4220c7803bbe37b (diff)
parent8a3333ef302b76ff966ddc3fad9992228113fc7f (diff)
Merge "Fixed the bubble bar drop zone height calculation." into main
Diffstat (limited to 'libs')
-rw-r--r--libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/BubbleController.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/BubbleController.java b/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/BubbleController.java
index f6a2c8d9695e..305fcdd5fb7d 100644
--- a/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/BubbleController.java
+++ b/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/BubbleController.java
@@ -912,7 +912,7 @@ public class BubbleController implements ConfigurationChangeListener,
// TODO(b/393172431) : Utilise DragZoneFactory once it is ready
final int bubbleBarDropZoneSideSize = getContext().getResources().getDimensionPixelSize(
R.dimen.bubble_bar_drop_zone_side_size);
- int top = t - bubbleBarDropZoneSideSize;
+ int top = b - bubbleBarDropZoneSideSize;
result.put(BubbleBarLocation.LEFT,
new Rect(l, top, l + bubbleBarDropZoneSideSize, b));
result.put(BubbleBarLocation.RIGHT,