From 053f50bd99b78166c9ceb95bca04024a593e8447 Mon Sep 17 00:00:00 2001 From: Brad Hinegardner Date: Tue, 18 Jun 2024 15:21:54 -0400 Subject: Adjust Wallet Quick Affordance picker String to use correct resource We were previously using an accessibility string within the Wallpaper picker to display the name for the Wallet. We should change this to be `wallet_title` to align with the qr code scanner's implementation. Bug: 337014257 Test: manual - observe string change in code Flag: EXEMPT bugfix Change-Id: I27e283f2173b38a997b634f5d3f1f4c04e350e33 --- .../quickaffordance/QuickAccessWalletKeyguardQuickAffordanceConfig.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/SystemUI/src/com/android/systemui/keyguard/data/quickaffordance/QuickAccessWalletKeyguardQuickAffordanceConfig.kt b/packages/SystemUI/src/com/android/systemui/keyguard/data/quickaffordance/QuickAccessWalletKeyguardQuickAffordanceConfig.kt index b3d9a7670c8a..56b520ed6206 100644 --- a/packages/SystemUI/src/com/android/systemui/keyguard/data/quickaffordance/QuickAccessWalletKeyguardQuickAffordanceConfig.kt +++ b/packages/SystemUI/src/com/android/systemui/keyguard/data/quickaffordance/QuickAccessWalletKeyguardQuickAffordanceConfig.kt @@ -59,7 +59,7 @@ constructor( override val key: String = BuiltInKeyguardQuickAffordanceKeys.QUICK_ACCESS_WALLET - override fun pickerName(): String = context.getString(R.string.accessibility_wallet_button) + override fun pickerName(): String = context.getString(R.string.wallet_title) override val pickerIconResourceId = R.drawable.ic_wallet_lockscreen -- cgit v1.2.3-59-g8ed1b