From dcfe1f740ae4f43f9e32ed8463ea885eec07d9b3 Mon Sep 17 00:00:00 2001 From: "Eunki, Hong" Date: Tue, 19 Mar 2024 12:48:49 +0900 Subject: [PATCH] [NUI][API10] Fix SVACE issue (ViewStyle.cs CopyFrom null check) This PR is copy of #5982 Signed-off-by: Eunki, Hong --- src/Tizen.NUI/src/public/BaseComponents/Style/ViewStyle.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Tizen.NUI/src/public/BaseComponents/Style/ViewStyle.cs b/src/Tizen.NUI/src/public/BaseComponents/Style/ViewStyle.cs index e927adc..d7a0b61 100755 --- a/src/Tizen.NUI/src/public/BaseComponents/Style/ViewStyle.cs +++ b/src/Tizen.NUI/src/public/BaseComponents/Style/ViewStyle.cs @@ -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) -- 2.7.4