From 676bcb5e3d4a5f9279d6e2ef3cb35e97b9c264f9 Mon Sep 17 00:00:00 2001 From: Lucas Silva Date: Fri, 7 Feb 2025 12:54:26 -0500 Subject: 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 --- .../src/com/android/systemui/communal/ui/compose/CommunalHub.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- cgit v1.2.3-59-g8ed1b