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

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

Merge changes from topic "presubmit-am-eb37b7cc8d444482bb756474cc862d14" into tm-mainline-prod

* changes:
  [automerge] Prevent removing the feedback view and callbacks when the user completes a gesture. 2p: c7dee917
  Prevent removing the feedback view and callbacks when the user completes a gesture.
parents 05fb9922 57d709f7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -325,7 +325,7 @@ abstract class TutorialFragment extends Fragment implements OnTouchListener {

    @Override
    public boolean onTouch(View view, MotionEvent motionEvent) {
        if (mTutorialController != null) {
        if (mTutorialController != null && !isGestureComplete()) {
            mTutorialController.hideFeedback();
        }
        // Note: Using logical-or to ensure both functions get called.