From 2a382aafc0a120b7688c1e2683cb647ff7a7b741 Mon Sep 17 00:00:00 2001 From: "huiyu.eun" Date: Tue, 16 Feb 2021 16:41:35 +0900 Subject: [PATCH] [NUI] Delete exception of View.Remove VD Application error Signed-off-by: huiyu.eun --- src/Tizen.NUI/src/public/BaseComponents/ViewPublicMethods.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Tizen.NUI/src/public/BaseComponents/ViewPublicMethods.cs b/src/Tizen.NUI/src/public/BaseComponents/ViewPublicMethods.cs index 7560872..8928784 100755 --- a/src/Tizen.NUI/src/public/BaseComponents/ViewPublicMethods.cs +++ b/src/Tizen.NUI/src/public/BaseComponents/ViewPublicMethods.cs @@ -183,7 +183,8 @@ namespace Tizen.NUI.BaseComponents if (child.GetParent() != this) { - throw new System.InvalidOperationException("You have deleted a view that is not a child of this view."); + //throw new System.InvalidOperationException("You have deleted a view that is not a child of this view."); + Tizen.Log.Error("NUI", "You have deleted a view that is not a child of this view."); } bool hasLayout = (layout != null); -- 2.7.4