From 75a9e686d7bd23619b22640b01979968772d6303 Mon Sep 17 00:00:00 2001 From: Heeyong Song Date: Mon, 20 Feb 2023 17:10:26 +0900 Subject: [PATCH 1/1] [Tizen] Disable property notification when the object is deleted Change-Id: Ief68d6cb246e75f9f9870f5285dc827b53ad2916 --- dali/internal/event/common/object-impl.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dali/internal/event/common/object-impl.cpp b/dali/internal/event/common/object-impl.cpp index 10982d3..e9f5dbb 100644 --- a/dali/internal/event/common/object-impl.cpp +++ b/dali/internal/event/common/object-impl.cpp @@ -970,6 +970,10 @@ Object::~Object() { item->ObjectDestroyed(*this); } + + // Disable property notifications in scene graph + DisablePropertyNotifications(); + delete mConstraints; delete mPropertyNotifications; -- 2.7.4