summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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.