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

Commit 3911b450 authored by Shimeng (Simon) Wang's avatar Shimeng (Simon) Wang
Browse files

Don't limit zoom scale change by the minimum increment.

issue: 4080125
Change-Id: I3fa258e12e7aa44c7286c9dccb1f249d5ae78a12
parent 87e8ab37
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;