[NUI] Fix theme applied issue
authorJiyun Yang <ji.yang@samsung.com>
Tue, 23 May 2023 09:04:27 +0000 (18:04 +0900)
committerdongsug-song <35130733+dongsug-song@users.noreply.github.com>
Wed, 31 May 2023 05:47:13 +0000 (14:47 +0900)
Component style can change even if the platform theme is disabled

Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
src/Tizen.NUI/src/public/BaseComponents/ViewInternal.cs

index fc3e700..8baabbd 100755 (executable)
@@ -1573,7 +1573,7 @@ namespace Tizen.NUI.BaseComponents
             }
 
             // Listen theme change event if needs.
-            if (ThemeManager.PlatformThemeEnabled && initialStyle != null)
+            if (initialStyle != null)
             {
                 SetThemeApplied();
             }