From 7fe397d6a5dba1901fccca7788f017442e2f93fd Mon Sep 17 00:00:00 2001 From: Matt Pietal Date: Thu, 29 Apr 2021 15:38:43 -0400 Subject: [PATCH] Wallet affordance - Fix taps Logic was reversed for FalsingManager. Fixes: 186775789 Test: manual Change-Id: I21c959ed774e763c7be2ad09a83dc1dc3ccf9206 --- .../systemui/statusbar/phone/KeyguardBottomAreaView.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 cabfbca26dfb9..71ba091492f6c 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,7 @@ 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 - if (!mFalsingManager.isFalseTap(FalsingManager.LOW_PENALTY)) { + if (mFalsingManager.isFalseTap(FalsingManager.LOW_PENALTY)) { return; }