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

Commit 1d05c7ca authored by Christoffer Gurell's avatar Christoffer Gurell
Browse files

Fixes scroll/measure bug in EditText

parent 336a0ee9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -5171,7 +5171,7 @@ public class TextView extends View implements ViewTreeObserver.OnPreDrawListener
            mDesiredHeightAtMeasure = desired;

            if (heightMode == MeasureSpec.AT_MOST) {
                height = Math.min(desired, height);
                height = Math.min(desired, heightSize);
            }
        }