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

Commit 55534976 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Fix NPE in getCompatibleMagnificationSpecForWindow" into sc-dev

parents ca9dfbe5 30869024
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -7514,8 +7514,8 @@ public class WindowManagerService extends IWindowManager.Stub
                if (spec != null) {
                    result.setTo(spec);
                }
                spec.scale *= windowState.mGlobalScale;
                return spec;
                result.scale *= windowState.mGlobalScale;
                return result;
            }
        }