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

Commit 1dd39efa authored by Yunfan Chen's avatar Yunfan Chen Committed by Automerger Merge Worker
Browse files

Merge "Fix display size calculations in large screen (2/3)" into tm-qpr-dev...

Merge "Fix display size calculations in large screen (2/3)" into tm-qpr-dev am: 13255a0a am: a71995dd

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/19565191



Change-Id: Ib43d81e5563f22f1399f28bed5dad5dae6e04f36
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents 7c51d5e1 a71995dd
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -380,7 +380,7 @@ public class UiDevice {
        Tracer.trace();
        Display display = getAutomatorBridge().getDefaultDisplay();
        Point p = new Point();
        display.getSize(p);
        display.getRealSize(p);
        return p.x;
    }

@@ -394,7 +394,7 @@ public class UiDevice {
        Tracer.trace();
        Display display = getAutomatorBridge().getDefaultDisplay();
        Point p = new Point();
        display.getSize(p);
        display.getRealSize(p);
        return p.y;
    }