Unrealize dialog after it dissmissed.
authorKangho Hur <kangho.hur@samsung.com>
Thu, 11 May 2017 04:39:29 +0000 (13:39 +0900)
committerKangho Hur <kangho.hur@samsung.com>
Mon, 10 Jul 2017 02:11:25 +0000 (11:11 +0900)
- this approach is from native EFL API usage.

Change-Id: Ic62ea6005074e8bfc6db312b66acfa93178ac87f

Xamarin.Forms.Platform.Tizen/Native/Dialog.cs [changed mode: 0755->0644]

old mode 100755 (executable)
new mode 100644 (file)
index e616ff5..8e0cb73
@@ -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.