You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 1, 2024. It is now read-only.
ScaledScreenSize = new Size(_pixelScreenSize.Width / _scalingFactor, _pixelScreenSize.Width / _scalingFactor);
When Size is being allocated, we're using Width for Height.
The text was updated successfully, but these errors were encountered:
adrianknight89
changed the title
[Android] AndroidDeviceInfo is setting ScaledScreenSize with Width for Height
[Internal] AndroidDeviceInfo is setting ScaledScreenSize with Width for Height
Jan 14, 2018
@hartez You guys have a lot on your plate, so I'm not surprised. Looks like it'll be tough to scour the current list of issues and mark duplicate items. Thanks for fixing this issue though. :)
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Description
Here's the issue:
ScaledScreenSize = new Size(_pixelScreenSize.Width / _scalingFactor, _pixelScreenSize.Width / _scalingFactor);
When
Size
is being allocated, we're usingWidth
forHeight
.The text was updated successfully, but these errors were encountered: