[Tizen] Fix initialize of Device Independent Pixel option (#11070)

This commit is contained in:
Seungkeun Lee 2020-06-18 18:59:54 +09:00 коммит произвёл GitHub
Родитель 0f687e4b65
Коммит 9ab52ee41b
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -341,6 +341,7 @@ namespace Xamarin.Forms
public static void Init(InitializationOptions options)
{
s_useDeviceIndependentPixel = options?.UseDeviceIndependentPixel ?? false;
SetupInit(options.Context, options);
}
@ -397,7 +398,6 @@ namespace Xamarin.Forms
{
if (options != null)
{
s_useDeviceIndependentPixel = options.UseDeviceIndependentPixel;
s_platformType = options.PlatformType;
s_useMessagingCenter = options.UseMessagingCenter;