From 04b086a69ac98eb1f4eb68af979b1f1ccbe18ad9 Mon Sep 17 00:00:00 2001 From: Bowon Ryu Date: Thu, 7 Jul 2022 15:28:17 +0900 Subject: [PATCH] [NUI] set default value for AutoScroll in TextLabel NUI TextLabel no longer use dali-theme. So set default values in NUI theme. This values are the same as the values in prev dali-theme. Signed-off-by: Bowon Ryu --- src/Tizen.NUI/src/public/Theme/DefaultThemeCommon.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Tizen.NUI/src/public/Theme/DefaultThemeCommon.cs b/src/Tizen.NUI/src/public/Theme/DefaultThemeCommon.cs index 7a63ef0..6a87fd7 100644 --- a/src/Tizen.NUI/src/public/Theme/DefaultThemeCommon.cs +++ b/src/Tizen.NUI/src/public/Theme/DefaultThemeCommon.cs @@ -42,6 +42,9 @@ namespace Tizen.NUI PixelSize = 24, TextColor = new Color(0.04f, 0.05f, 0.13f, 1), FontStyle = new PropertyMap().Add("weight", new PropertyValue("regular")), + AutoScrollLoopCount = 2, + AutoScrollGap = 50.0f, + AutoScrollSpeed = 80, }); // TextField style. -- 2.7.4