diff options
| author | 2021-04-23 10:35:58 -0400 | |
|---|---|---|
| committer | 2021-04-23 10:41:50 -0400 | |
| commit | 81363b6a729991bfbd817dffbd54862b13a4eda6 (patch) | |
| tree | 9a9f87f0f244673aa0424dcd043c80ee883b8874 | |
| parent | 386e8ba09015dd2b176fb6cc4e74c48d822630d6 (diff) | |
Turn FalsingManager on for Wallet Button
Changes such as http://ag/14250946 were probably necessary
to make this work reliably.
Fixes: 186212376
Test: manual
Change-Id: I8a45816fc14f4f7c1952d4db28a5d4807b4da254
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/phone/KeyguardBottomAreaView.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/phone/KeyguardBottomAreaView.java b/packages/SystemUI/src/com/android/systemui/statusbar/phone/KeyguardBottomAreaView.java index 8cef23f21383..cabfbca26dfb 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/phone/KeyguardBottomAreaView.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/phone/KeyguardBottomAreaView.java @@ -935,7 +935,9 @@ public class KeyguardBottomAreaView extends FrameLayout implements View.OnClickL private void onWalletClick(View v) { // More coming here; need to inform the user about how to proceed - mFalsingManager.isFalseTap(FalsingManager.LOW_PENALTY); + if (!mFalsingManager.isFalseTap(FalsingManager.LOW_PENALTY)) { + return; + } if (mHasCard) { Intent intent = new Intent(mContext, WalletActivity.class) |