Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7fe397d6 authored by Matt Pietal's avatar Matt Pietal
Browse files

Wallet affordance - Fix taps

Logic was reversed for FalsingManager.

Fixes: 186775789
Test: manual
Change-Id: I21c959ed774e763c7be2ad09a83dc1dc3ccf9206
parent 59786349
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -935,7 +935,7 @@ public class KeyguardBottomAreaView extends FrameLayout implements View.OnClickL


    private void onWalletClick(View v) {
    private void onWalletClick(View v) {
        // More coming here; need to inform the user about how to proceed
        // 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;
            return;
        }
        }