diff options
| author | 2025-02-19 09:39:00 -0800 | |
|---|---|---|
| committer | 2025-02-19 09:39:00 -0800 | |
| commit | fbfa2a661bc3452c961c9bc3d284a861e95f72b5 (patch) | |
| tree | 59f5ae83d392c0bb2bf4ad3ea5aa4a0b6aa11b29 /libs | |
| parent | a32d24ce766724bee909108ef4220c7803bbe37b (diff) | |
| parent | 8a3333ef302b76ff966ddc3fad9992228113fc7f (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.java | 2 |
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, |