From 0a0c9f5b0dc6545c1730b88f7ca8a4f05814a615 Mon Sep 17 00:00:00 2001 From: Seoyeon Kim Date: Tue, 4 Jul 2023 18:15:35 +0900 Subject: [PATCH] [NUI] Update FontSizeScale values - Except for TV and wearable profiles, FontSizeScale values are updated. Signed-off-by: Seoyeon Kim --- src/Tizen.NUI/src/public/BaseComponents/TextUtils.cs | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/Tizen.NUI/src/public/BaseComponents/TextUtils.cs b/src/Tizen.NUI/src/public/BaseComponents/TextUtils.cs index 1c07c59..c08edfd 100755 --- a/src/Tizen.NUI/src/public/BaseComponents/TextUtils.cs +++ b/src/Tizen.NUI/src/public/BaseComponents/TextUtils.cs @@ -1,3 +1,4 @@ + /* * Copyright(c) 2020 Samsung Electronics Co., Ltd. * @@ -1137,13 +1138,11 @@ namespace Tizen.NUI.BaseComponents private const float FontSizeScaleGiant = 2.5f; #else // PROFILE_MOBILE and etc // The following values from 'system-settings/libutil/sstu.c' - private const float FontSizeScaleSmall = 0.8f; + private const float FontSizeScaleSmall = 0.87f; private const float FontSizeScaleNormal = 1.0f; - // TODO: Profile Separation - private const float FontSizeScaleLarge = 1.0f; - //private const float FontSizeScaleLarge = 1.5f; - private const float FontSizeScaleHuge = 1.9f; - private const float FontSizeScaleGiant = 2.5f; + private const float FontSizeScaleLarge = 1.1f; + private const float FontSizeScaleHuge = 1.2f; + private const float FontSizeScaleGiant = 1.4f; #endif /// -- 2.7.4