fix hd 93/282693/1
authorYurii Zinchuk/Tizen Services & IoT (PLT) /SRPOL/Engineer/Samsung Electronics <y.zinchuk@samsung.com>
Sun, 9 Oct 2022 17:26:22 +0000 (19:26 +0200)
committerk.stepaniuk <k.stepaniuk@samsung.com>
Sun, 9 Oct 2022 17:33:24 +0000 (19:33 +0200)
Change-Id: I839bfd28982218e51a61ecb4d90af20d08c45c7d

Oobe/Oobe/OobeApp.cs

index 48ad65b..fcb0a58 100644 (file)
@@ -88,7 +88,8 @@ namespace Oobe
             Window.Instance.Type = WindowType.Notification;
             Window.Instance.SetNotificationLevel(NotificationLevel.High);
 
-            SpUtils.DefaultFactor = (Window.Instance.Dpi.Width / 161) / 0.9f;
+            var scale = Window.Instance.Size.Height >= 1080 ? 0.9f : 0.6f;
+            SpUtils.DefaultFactor = (Window.Instance.Dpi.Width / 160) / scale;
             Tizen.Log.Debug("oobe", $"DefaultScaleFactor: {SpUtils.DefaultFactor}");
 
             if (Preference.Contains("scale"))