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

Commit 40f24016 authored by Shimeng (Simon) Wang's avatar Shimeng (Simon) Wang Committed by Android Git Automerger
Browse files

am 0837fde9: Merge "Don\'t limit zoom scale change by the minimum increment." into honeycomb-mr1

* commit '0837fde9':
  Don't limit zoom scale change by the minimum increment.
parents 4543b8d4 0837fde9
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;