fix #581 Android and Tizen Location.Y error

This commit is contained in:
jx 2018-07-24 10:39:13 +08:00
Родитель f050094616
Коммит 0694d307b7
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -164,10 +164,10 @@ namespace SkiaSharp.Views.Forms
{
#if __ANDROID__
x = Context.FromPixels(x);
x = Context.FromPixels(y);
y = Context.FromPixels(y);
#elif TIZEN4_0
x = Tizen.ScalingInfo.FromPixel(x);
x = Tizen.ScalingInfo.FromPixel(y);
y = Tizen.ScalingInfo.FromPixel(y);
#elif __IOS__ || __MACOS__ || WINDOWS_UWP
// Tizen and Android are the reverse of the other platforms
#else