From: cskim Date: Fri, 28 Apr 2017 12:26:21 +0000 (+0900) Subject: Update TV font size X-Git-Tag: submit/tizen/20170808.015446~69 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1dc745772de1833fdb1f54bd00d61400d585aeaa;p=profile%2Ftv%2Fapps%2Fdotnet%2Fhome.git Update TV font size Change-Id: I9e151579eeb99e8a51a953ecf07d17d6eeca033f --- diff --git a/LibTVRefCommonPortable/Utils/SizeUtils.cs b/LibTVRefCommonPortable/Utils/SizeUtils.cs index c4b6ef9..b8ca066 100644 --- a/LibTVRefCommonPortable/Utils/SizeUtils.cs +++ b/LibTVRefCommonPortable/Utils/SizeUtils.cs @@ -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); } }