diff options
| author | 2024-06-18 15:21:54 -0400 | |
|---|---|---|
| committer | 2024-06-18 15:28:33 -0400 | |
| commit | 053f50bd99b78166c9ceb95bca04024a593e8447 (patch) | |
| tree | cdb388e806ebf18541b172affb98f10b65b6ee51 | |
| parent | 213782d799fbc62d5f44e1af4a745a76f6784691 (diff) | |
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
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/keyguard/data/quickaffordance/QuickAccessWalletKeyguardQuickAffordanceConfig.kt | 2 |
1 files changed, 1 insertions, 1 deletions
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 |