Skip to content

Commit

Permalink
[NUI] Update FontSizeScale values
Browse files Browse the repository at this point in the history
- Except for TV and wearable profiles, FontSizeScale values are updated.

Signed-off-by: Seoyeon Kim <[email protected]>
  • Loading branch information
Seoyeon2Kim committed Jul 4, 2023
1 parent fd54d98 commit 552fb94
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Tizen.NUI/src/public/BaseComponents/TextUtils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1137,11 +1137,11 @@ public static List<FontInfo> GetFontInfoList(PropertyArray fontArray)
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;
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.12f;
private const float FontSizeScaleGiant = 1.4f;
#endif

/// <summary>
Expand Down

0 comments on commit 552fb94

Please sign in to comment.