Skip to content

Commit

Permalink
[NUI][API10] Fix worker thread handle removal issue
Browse files Browse the repository at this point in the history
Signed-off-by: Eunki, Hong <[email protected]>
  • Loading branch information
Eunki, Hong authored and hinohie committed Jun 11, 2024
1 parent 0ec69a9 commit 436780c
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -209,10 +209,15 @@ public override bool IsInvalid
}

protected override bool ReleaseHandle()
{
DisposeQueue.Instance.Add(this);
return true;
}

public void Dispose()

Check warning on line 217 in src/Tizen.NUI/src/public/BaseComponents/ViewAccessibilityEvent.cs

View workflow job for this annotation

GitHub Actions / build

'View.ControlHandle.Dispose()' hides inherited member 'SafeHandle.Dispose()'. Use the new keyword if hiding was intended.
{
Interop.View.DeleteControlHandleView(handle);
this.SetHandle(IntPtr.Zero);
return true;
}
}

Expand Down

0 comments on commit 436780c

Please sign in to comment.