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

Commit f555bf65 authored by Android (Google) Code Review's avatar Android (Google) Code Review
Browse files

Merge change I4a4323c0 into eclair-mr2

* changes:
  Fixes scroll/measure bug in EditText
parents 656c037c 4a4323c0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -5198,7 +5198,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);
            }
        }