From 1dc745772de1833fdb1f54bd00d61400d585aeaa Mon Sep 17 00:00:00 2001 From: cskim Date: Fri, 28 Apr 2017 21:26:21 +0900 Subject: [PATCH] Update TV font size Change-Id: I9e151579eeb99e8a51a953ecf07d17d6eeca033f --- LibTVRefCommonPortable/Utils/SizeUtils.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } } -- 2.34.1