From 9b340ebc2c4f9091d029bb413c4dcbd58abc40cb Mon Sep 17 00:00:00 2001 From: Kangho Hur Date: Thu, 11 May 2017 13:39:29 +0900 Subject: Unrealize dialog after it dissmissed. - this approach is from native EFL API usage. Change-Id: Ic62ea6005074e8bfc6db312b66acfa93178ac87f --- Xamarin.Forms.Platform.Tizen/Native/Dialog.cs | 2 ++ 1 file changed, 2 insertions(+) mode change 100755 => 100644 Xamarin.Forms.Platform.Tizen/Native/Dialog.cs diff --git a/Xamarin.Forms.Platform.Tizen/Native/Dialog.cs b/Xamarin.Forms.Platform.Tizen/Native/Dialog.cs old mode 100755 new mode 100644 index e616ff5a..8e0cb735 --- a/Xamarin.Forms.Platform.Tizen/Native/Dialog.cs +++ b/Xamarin.Forms.Platform.Tizen/Native/Dialog.cs @@ -189,6 +189,8 @@ namespace Xamarin.Forms.Platform.Tizen.Native Dismissed += (s, e) => { OnDismissed(); + //Native control should be freed after dismissed event occurred. (this is EFL's law.) + Unrealize(); }; // Adds a handler for the Shown event. -- cgit v1.2.3