From: Jiyun Yang Date: Thu, 18 Jan 2024 06:58:36 +0000 (+0900) Subject: [NUI] Do not check theme applied flag when set ThemeChangeSensitive X-Git-Tag: accepted/tizen/7.0/unified/20240119.013247~1^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8e0410b0faf4e2cd5f413117b66e7f16fcea1bff;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git [NUI] Do not check theme applied flag when set ThemeChangeSensitive New theme can affect to the views that were not affected by previous theme. Signed-off-by: Jiyun Yang --- diff --git a/src/Tizen.NUI/src/public/BaseComponents/ViewBindableProperty.cs b/src/Tizen.NUI/src/public/BaseComponents/ViewBindableProperty.cs index a10622c..0db1caa 100755 --- a/src/Tizen.NUI/src/public/BaseComponents/ViewBindableProperty.cs +++ b/src/Tizen.NUI/src/public/BaseComponents/ViewBindableProperty.cs @@ -2022,8 +2022,6 @@ namespace Tizen.NUI.BaseComponents view.themeData.ThemeChangeSensitive = (bool)newValue; - if (!view.themeData.ThemeApplied) return; - if (view.themeData.ThemeChangeSensitive && !view.themeData.ListeningThemeChangeEvent) { view.themeData.ListeningThemeChangeEvent = true;