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

Commit 36a58224 authored by Gilles Debunne's avatar Gilles Debunne Committed by Android (Google) Code Review
Browse files

Merge "Added bottom padding in textview's focused rectangle"

parents 8ad41a3f 322044ab
Loading
Loading
Loading
Loading
+2 −0
Original line number Original line Diff line number Diff line
@@ -5148,6 +5148,8 @@ public class TextView extends View implements ViewTreeObserver.OnPreDrawListener
            paddingTop += getVerticalOffset(false);
            paddingTop += getVerticalOffset(false);
        }
        }
        r.offset(paddingLeft, paddingTop);
        r.offset(paddingLeft, paddingTop);
        int paddingBottom = getExtendedPaddingBottom();
        r.bottom += paddingBottom;
    }
    }


    /**
    /**