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

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

am 40f24016: am 0837fde9: Merge "Don\'t limit zoom scale change by the minimum...

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

* commit '40f24016':
  Don't limit zoom scale change by the minimum increment.
parents 9610d3e9 40f24016
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;