summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Tizen/Native
diff options
context:
space:
mode:
authorKangho Hur <kangho.hur@samsung.com>2017-05-11 13:39:29 +0900
committerKangho Hur <kangho.hur@samsung.com>2017-10-23 13:34:35 +0900
commitded3c27f9dd8fa3e81fe3da8fdd331840c2aea66 (patch)
treebcd40b8ddfb845b7e81581a0abfee8588c2ac5e2 /Xamarin.Forms.Platform.Tizen/Native
parent243a2a0c772e222681196a7a6cfb50aca3b20c8c (diff)
downloadxamarin-forms-ded3c27f9dd8fa3e81fe3da8fdd331840c2aea66.tar.gz
xamarin-forms-ded3c27f9dd8fa3e81fe3da8fdd331840c2aea66.tar.bz2
xamarin-forms-ded3c27f9dd8fa3e81fe3da8fdd331840c2aea66.zip
Unrealize dialog after it dissmissed.
- this approach is from native EFL API usage. Change-Id: Ic62ea6005074e8bfc6db312b66acfa93178ac87f
Diffstat (limited to 'Xamarin.Forms.Platform.Tizen/Native')
-rw-r--r--[-rwxr-xr-x]Xamarin.Forms.Platform.Tizen/Native/Dialog.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/Xamarin.Forms.Platform.Tizen/Native/Dialog.cs b/Xamarin.Forms.Platform.Tizen/Native/Dialog.cs
index e616ff5a..8e0cb735 100755..100644
--- 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.