summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Lucas Silva <lusilva@google.com> 2025-02-07 12:54:26 -0500
committer Lucas Silva <lusilva@google.com> 2025-02-07 12:55:53 -0500
commit676bcb5e3d4a5f9279d6e2ef3cb35e97b9c264f9 (patch)
tree14cc08d09883c6124f57d8a9528583b6bef201e0
parentb1d4e2ef49da6ae500a677570e7e6cd8db91ffaa (diff)
Update UMO background radius to match UMO
Currently the background radius is less than the radius of the actual UMO, which means the background is visible at the edges of the UMO. Fixes: 393417466 Test: manually by playing media and opening GH Flag: EXEMPT bugfix Change-Id: Ib93fc7400173fcc8137e43df26917b2c0f6199ba
-rw-r--r--packages/SystemUI/compose/features/src/com/android/systemui/communal/ui/compose/CommunalHub.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/compose/features/src/com/android/systemui/communal/ui/compose/CommunalHub.kt b/packages/SystemUI/compose/features/src/com/android/systemui/communal/ui/compose/CommunalHub.kt
index 3c0480d150e0..9c57efc24a22 100644
--- a/packages/SystemUI/compose/features/src/com/android/systemui/communal/ui/compose/CommunalHub.kt
+++ b/packages/SystemUI/compose/features/src/com/android/systemui/communal/ui/compose/CommunalHub.kt
@@ -1724,7 +1724,7 @@ private fun UmoLegacy(viewModel: BaseCommunalViewModel, modifier: Modifier = Mod
modifier
.clip(
shape =
- RoundedCornerShape(dimensionResource(system_app_widget_background_radius))
+ RoundedCornerShape(dimensionResource(R.dimen.notification_corner_radius))
)
.background(MaterialTheme.colorScheme.primary)
.pointerInput(Unit) {