diff options
| author | 2024-11-06 18:12:57 +0000 | |
|---|---|---|
| committer | 2024-11-06 19:17:01 +0000 | |
| commit | 21cb5da50260c1873d576ce7940cd7b32b9024b1 (patch) | |
| tree | 6c2b0092ea678019cd5b86a552704d8acb482454 | |
| parent | 66b4d2f754eae14facfadf5b2f1c34989e9f056c (diff) | |
Fixed color contrast on drag handle
Fix: 373502981
Flag: com.android.systemui.keyboard_shortcut_helper_rewrite
Test: Check that contrast between drag handle and background is visible
enough
Change-Id: If3c1224a8f3eb4bd2dcf5d059f8d57d0a19d9093
| -rw-r--r-- | packages/SystemUI/compose/features/src/com/android/systemui/statusbar/phone/SystemUIDialogFactoryExt.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/compose/features/src/com/android/systemui/statusbar/phone/SystemUIDialogFactoryExt.kt b/packages/SystemUI/compose/features/src/com/android/systemui/statusbar/phone/SystemUIDialogFactoryExt.kt index e9b7335197b0..2d826ce1703e 100644 --- a/packages/SystemUI/compose/features/src/com/android/systemui/statusbar/phone/SystemUIDialogFactoryExt.kt +++ b/packages/SystemUI/compose/features/src/com/android/systemui/statusbar/phone/SystemUIDialogFactoryExt.kt @@ -287,7 +287,7 @@ private fun DragHandle(dialog: Dialog) { Modifier.padding(top = 16.dp, bottom = 6.dp) .semantics { contentDescription = dragHandleContentDescription } .clickable { dialog.dismiss() }, - color = MaterialTheme.colorScheme.outlineVariant, + color = MaterialTheme.colorScheme.onSurfaceVariant, shape = MaterialTheme.shapes.extraLarge, ) { Box(Modifier.size(width = 32.dp, height = 4.dp)) |