From 0d051c07610688764902e15a121342aa15f3ffb7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Go=CC=88llner?= Date: Tue, 23 May 2023 16:55:38 +0100 Subject: [PATCH] Fix partial screen sharing permission dialog icon color When partial screen sharing is enabled, a custom layout for the dialog is used, which was using a different tint than the standard alert dialog. The fix is to use the standard tint value. Fixes: 283966705 Test: Manually Change-Id: I917451b9af1e5151806f3b1ab91a567bff0f455f --- packages/SystemUI/res/layout/screen_share_dialog.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/SystemUI/res/layout/screen_share_dialog.xml b/packages/SystemUI/res/layout/screen_share_dialog.xml index 0d86e0a40b6d5..ab522a3887359 100644 --- a/packages/SystemUI/res/layout/screen_share_dialog.xml +++ b/packages/SystemUI/res/layout/screen_share_dialog.xml @@ -36,7 +36,7 @@ android:layout_width="@dimen/screenrecord_logo_size" android:layout_height="@dimen/screenrecord_logo_size" android:src="@drawable/ic_media_projection_permission" - android:tint="?androidprv:attr/colorAccentPrimary" + android:tint="?androidprv:attr/colorAccentPrimaryVariant" android:importantForAccessibility="no"/>