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

Commit 00c50b2e authored by Leon Scroggins's avatar Leon Scroggins Committed by Android Git Automerger
Browse files

am f348502c: Merge "Allow TextView to do its thing." into gingerbread

Merge commit 'f348502c' into gingerbread-plus-aosp

* commit 'f348502c':
  Allow TextView to do its thing.
parents 4711d21a f348502c
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);
    }

    /**