From: Eunki, Hong Date: Tue, 11 Jun 2024 15:11:46 +0000 (+0900) Subject: [NUI][API10] Fix worker thread handle removal issue X-Git-Tag: submit/tizen_7.0/20240611.152129~1^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=436780c0539a5553570d7b211f8023924ac06743;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git [NUI][API10] Fix worker thread handle removal issue Signed-off-by: Eunki, Hong --- diff --git a/src/Tizen.NUI/src/public/BaseComponents/ViewAccessibilityEvent.cs b/src/Tizen.NUI/src/public/BaseComponents/ViewAccessibilityEvent.cs index 2727ef4cd..68a053f31 100755 --- a/src/Tizen.NUI/src/public/BaseComponents/ViewAccessibilityEvent.cs +++ b/src/Tizen.NUI/src/public/BaseComponents/ViewAccessibilityEvent.cs @@ -209,10 +209,15 @@ namespace Tizen.NUI.BaseComponents } protected override bool ReleaseHandle() + { + DisposeQueue.Instance.Add(this); + return true; + } + + public void Dispose() { Interop.View.DeleteControlHandleView(handle); this.SetHandle(IntPtr.Zero); - return true; } }