diff options
author | 2025-02-11 06:53:57 -0800 | |
---|---|---|
committer | 2025-02-11 06:53:57 -0800 | |
commit | 81c1aef9a73bdbc6d246c70ec200c6a808d1763c (patch) | |
tree | d0f10c474290ae21b203af4e6bdf583975641467 | |
parent | d4a3889915b9933771981e5a88a7db9f9c4e489e (diff) | |
parent | 68b8fc30ad35faff8b8b76f1fbd990926a913dd5 (diff) |
Merge "Fix ringer drawer touchable area" into main
-rw-r--r-- | packages/SystemUI/src/com/android/systemui/volume/dialog/ringer/ui/binder/VolumeDialogRingerViewBinder.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/volume/dialog/ringer/ui/binder/VolumeDialogRingerViewBinder.kt b/packages/SystemUI/src/com/android/systemui/volume/dialog/ringer/ui/binder/VolumeDialogRingerViewBinder.kt index 92ec4f554548..eb2b2f68a6e2 100644 --- a/packages/SystemUI/src/com/android/systemui/volume/dialog/ringer/ui/binder/VolumeDialogRingerViewBinder.kt +++ b/packages/SystemUI/src/com/android/systemui/volume/dialog/ringer/ui/binder/VolumeDialogRingerViewBinder.kt @@ -120,7 +120,7 @@ constructor( drawerContainer.setTransitionListener(ringerDrawerTransitionListener) volumeDialogBackgroundView.background = volumeDialogBackgroundView.background.mutate() ringerBackgroundView.background = ringerBackgroundView.background.mutate() - launch { dialogViewModel.addTouchableBounds(drawerContainer) } + launch { dialogViewModel.addTouchableBounds(ringerBackgroundView) } viewModel.ringerViewModel .mapLatest { ringerState -> |