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

Commit cf24093b authored by Hyunki Kim's avatar Hyunki Kim Committed by Tyler Freeman
Browse files

fix(window magnification): fix setWindowSizeAndCenter centerY check typo

Test: manual

Change-Id: Ia2c3374fb03bb6df2297a8c3d6998f4e46f05199
parent bb96a3ee
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -689,7 +689,7 @@ class WindowMagnificationController implements View.OnTouchListener, SurfaceHold
        if (Float.isNaN(centerX)) {
            centerX = mMagnificationFrame.centerX();
        }
        if (Float.isNaN(centerX)) {
        if (Float.isNaN(centerY)) {
            centerY = mMagnificationFrame.centerY();
        }