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

Commit 0837fde9 authored by Shimeng (Simon) Wang's avatar Shimeng (Simon) Wang Committed by Android (Google) Code Review
Browse files

Merge "Don't limit zoom scale change by the minimum increment." into honeycomb-mr1

parents 79b87df5 3911b450
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -535,7 +535,7 @@ class ZoomManager {
            mTextWrapScale = scale;
        }

        if (exceedsMinScaleIncrement(scale, mActualScale) || force) {
        if (scale != mActualScale || force) {
            float oldScale = mActualScale;
            float oldInvScale = mInvActualScale;