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

Commit 5fc3c84f authored by Adam Powell's avatar Adam Powell Committed by Android (Google) Code Review
Browse files

Merge "Fix bug 3362680 - calendar crash while tabbing among views" into honeycomb

parents c4cc3ea4 3cb8b638
Loading
Loading
Loading
Loading
+11 −1
Original line number Diff line number Diff line
@@ -5118,6 +5118,15 @@ public class View implements Drawable.Callback, KeyEvent.Callback, Accessibility
        }
    }

    /**
     * Remove the pending click action
     */
    private void removePerformClickCallback() {
        if (mPerformClick != null) {
            removeCallbacks(mPerformClick);
        }
    }

    /**
     * Remove the prepress detection timer.
     */
@@ -7579,6 +7588,7 @@ public class View implements Drawable.Callback, KeyEvent.Callback, Accessibility

        removeUnsetPressCallback();
        removeLongPressCallback();
        removePerformClickCallback();

        destroyDrawingCache();