From e344496278493920b3155a0adf35282c39de61e8 Mon Sep 17 00:00:00 2001 From: Seoyeon Kim Date: Thu, 13 Jul 2023 21:56:34 +0900 Subject: [PATCH] [NUI] Update Font size scale again based on the updated guide - The font size scales are changed according to the latest GUI guide. - Five stages of Font size scale : 87% -> 100% -> 113% -> 126% -> 140 % Signed-off-by: Seoyeon Kim --- src/Tizen.NUI/src/public/BaseComponents/TextUtils.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Tizen.NUI/src/public/BaseComponents/TextUtils.cs b/src/Tizen.NUI/src/public/BaseComponents/TextUtils.cs index c08edfd5bfe..11c66eec2b5 100755 --- a/src/Tizen.NUI/src/public/BaseComponents/TextUtils.cs +++ b/src/Tizen.NUI/src/public/BaseComponents/TextUtils.cs @@ -1140,8 +1140,8 @@ public static List GetFontInfoList(PropertyArray fontArray) // The following values from 'system-settings/libutil/sstu.c' private const float FontSizeScaleSmall = 0.87f; private const float FontSizeScaleNormal = 1.0f; - private const float FontSizeScaleLarge = 1.1f; - private const float FontSizeScaleHuge = 1.2f; + private const float FontSizeScaleLarge = 1.13f; + private const float FontSizeScaleHuge = 1.26f; private const float FontSizeScaleGiant = 1.4f; #endif