From e33e806c56dd02d1bf48a8c948e79d70b85a1e63 Mon Sep 17 00:00:00 2001 From: Wonsik Jung Date: Fri, 3 Mar 2023 14:55:55 +0900 Subject: [PATCH] [NUI] Fix set input region binding Fix SetInputRegion binding function with correct internal function. Because previous binded with includedRegion. --- src/Tizen.NUI/src/public/Window/Window.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Tizen.NUI/src/public/Window/Window.cs b/src/Tizen.NUI/src/public/Window/Window.cs index 7d14f9f..5d67a04 100755 --- a/src/Tizen.NUI/src/public/Window/Window.cs +++ b/src/Tizen.NUI/src/public/Window/Window.cs @@ -771,7 +771,7 @@ namespace Tizen.NUI /// 3 public void SetInputRegion(Rectangle inputRegion) { - Interop.Window.IncludeInputRegion(SwigCPtr, Rectangle.getCPtr(inputRegion)); + Interop.Window.SetInputRegion(SwigCPtr, Rectangle.getCPtr(inputRegion)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } -- 2.7.4