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

Commit 414b0663 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Fix double tapping notifications on lock screen."

parents 55b01d97 20de6bde
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -336,6 +336,10 @@ public abstract class ActivatableNotificationView extends ExpandableOutlineView
        return false;
    }

    boolean superPerformClick() {
        return super.performClick();
    }

    /**
     * Cancels the hotspot and makes the notification inactive.
     */
+2 −1
Original line number Diff line number Diff line
@@ -72,7 +72,8 @@ public class ActivatableNotificationViewController {
            } else {
                mView.makeInactive(true /* animate */);
            }
        }, mView::performClick, mView::handleSlideBack, mFalsingManager::onNotificationDoubleTap);
        }, mView::superPerformClick, mView::handleSlideBack,
                mFalsingManager::onNotificationDoubleTap);
        mView.setOnTouchListener(mTouchHandler);
        mView.setTouchHandler(mTouchHandler);
        mView.setOnDimmedListener(dimmed -> {