diff options
| author | 2023-10-25 14:39:34 +0000 | |
|---|---|---|
| committer | 2023-10-25 14:39:34 +0000 | |
| commit | 96ef462486181594da7e024facd9856e9a049221 (patch) | |
| tree | 63d2446d6c711e339fc7e85fe87dee380efd4072 | |
| parent | 2d1d3bae4bd62620d649befacd9b342444c97d41 (diff) | |
| parent | 86bea9e22184f2c7df01a1d0e044adb1b79e9cd6 (diff) | |
Merge "Fix border color of Compose security footer actions" into main
| -rw-r--r-- | packages/SystemUI/compose/features/src/com/android/systemui/qs/footer/ui/compose/FooterActions.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/compose/features/src/com/android/systemui/qs/footer/ui/compose/FooterActions.kt b/packages/SystemUI/compose/features/src/com/android/systemui/qs/footer/ui/compose/FooterActions.kt index d42a2f09eb30..eb71490f049a 100644 --- a/packages/SystemUI/compose/features/src/com/android/systemui/qs/footer/ui/compose/FooterActions.kt +++ b/packages/SystemUI/compose/features/src/com/android/systemui/qs/footer/ui/compose/FooterActions.kt @@ -321,7 +321,7 @@ private fun TextButton( shape = CircleShape, color = colorAttr(R.attr.underSurface), contentColor = LocalAndroidColorScheme.current.onSurfaceVariant, - borderStroke = BorderStroke(1.dp, colorAttr(R.attr.onShadeActive)), + borderStroke = BorderStroke(1.dp, colorAttr(R.attr.shadeInactive)), modifier = modifier.padding(horizontal = 4.dp), onClick = onClick, ) { |