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

Commit 3b60cd3b authored by Daniel Peykov's avatar Daniel Peykov Committed by Gerrit Code Review
Browse files

Merge "Fix display size calculations in large screen (2/3)"

parents b546f825 6183509d
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;
    }