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

Commit f348502c authored by Leon Scroggins's avatar Leon Scroggins Committed by Android (Google) Code Review
Browse files

Merge "Allow TextView to do its thing." into gingerbread

parents 9facd2d0 23cb86a4
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -519,6 +519,7 @@ import java.util.ArrayList;
            return false;
        case MotionEvent.ACTION_UP:
        case MotionEvent.ACTION_CANCEL:
            super.onTouchEvent(event);
            if (mHasPerformedLongClick) {
                mGotTouchDown = false;
                return false;
@@ -684,9 +685,6 @@ import java.util.ArrayList;
        // webkit's drawing.
        setWillNotDraw(!inPassword);
        setBackgroundDrawable(inPassword ? mBackground : null);
        // For non-password fields, avoid the invals from TextView's blinking
        // cursor
        setCursorVisible(inPassword);
    }

    /**