From 7e8cb2a065d89eb5a315495cdfa6dbe7aa0bf940 Mon Sep 17 00:00:00 2001 From: "joogab.yun" Date: Wed, 15 Jun 2022 10:36:55 +0900 Subject: [PATCH] [NUI] Add dispose. Dispose seems to be missing after creating and using value. --- src/Tizen.NUI/src/public/Window/Window.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Tizen.NUI/src/public/Window/Window.cs b/src/Tizen.NUI/src/public/Window/Window.cs index a1c23f1..30a5182 100755 --- a/src/Tizen.NUI/src/public/Window/Window.cs +++ b/src/Tizen.NUI/src/public/Window/Window.cs @@ -1555,6 +1555,7 @@ namespace Tizen.NUI positionSize.Height = val.GetY(); Interop.Window.SetPositionSize(SwigCPtr, Rectangle.getCPtr(positionSize)); + val.Dispose(); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); -- 2.7.4