Update TV font size
authorcskim <charles0.kim@samsung.com>
Fri, 28 Apr 2017 12:26:21 +0000 (21:26 +0900)
committerChulSeung Kim <charles0.kim@samsung.com>
Thu, 8 Jun 2017 09:34:53 +0000 (18:34 +0900)
Change-Id: I9e151579eeb99e8a51a953ecf07d17d6eeca033f

LibTVRefCommonPortable/Utils/SizeUtils.cs

index c4b6ef9c5a959dbdc87bfb55702c903814d288a6..b8ca0668d759947404b9227a09793ef08998c9b0 100644 (file)
@@ -154,7 +154,7 @@ namespace LibTVRefCommonPortable.Utils
                 case PlatformModel.TV:
                     // TODO : Remove this if the TV/Other device's dpi is correctly changed.
                     //DebuggingUtils.Dbg(String.Format("TV/Other, fontBaseSize = {0}, BaseScreenHeight = {1}, ScreenHeight = {2}, ScaleRatio = {3}", fontBaseSize, BaseScreenHeight, ScreenHeight, ScaleRatio));
-                    double tempAdjustmentRatio = 0.22D;
+                    double tempAdjustmentRatio = 1D;
                     return Convert.ToInt32(((double)((double)fontBaseSize / (double)BaseScreenHeight) * (double)ScreenHeight) * ScaleRatio * tempAdjustmentRatio);
             }
         }