[NUI] Fix SVACE issue
authordongsug.song <dongsug.song@samsung.com>
Tue, 5 Mar 2024 07:07:32 +0000 (16:07 +0900)
committerJiyun Yang <ji.yang@samsung.com>
Wed, 6 Mar 2024 09:35:57 +0000 (18:35 +0900)
src/Tizen.NUI/src/public/BaseComponents/Style/ViewStyle.cs

index e927adc..d7a0b61 100755 (executable)
@@ -566,14 +566,14 @@ namespace Tizen.NUI.BaseComponents
         {
             var source = other as ViewStyle;
 
-            IncludeDefaultStyle = source.IncludeDefaultStyle;
-            SolidNull = source.SolidNull;
-
             if (source == null || source.DirtyProperties == null || source.DirtyProperties.Count == 0)
             {
                 return;
             }
 
+            IncludeDefaultStyle = source.IncludeDefaultStyle;
+            SolidNull = source.SolidNull;
+
             BindableProperty.GetBindablePropertysOfType(GetType(), out var thisBindableProperties);
 
             if (thisBindableProperties == null)