summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordarkleem <cdark.lim@samsung.com>2017-05-16 19:05:17 +0900
committerSeungkeun Lee <sngn.lee@samsung.com>2017-05-17 03:52:53 +0000
commitbd4594422edf01a62895567148ec2dae6bc26757 (patch)
tree8762085c6b790c0ecd28832cee8ee5a2543718e0
parent8acbc272377fb0c953a3e1183c4e775fb517c5eb (diff)
downloadxamarin-forms-bd4594422edf01a62895567148ec2dae6bc26757.tar.gz
xamarin-forms-bd4594422edf01a62895567148ec2dae6bc26757.tar.bz2
xamarin-forms-bd4594422edf01a62895567148ec2dae6bc26757.zip
fix native.dialog unrealize issue
Change-Id: I85debf0424ce08aad63b9ffcc800afc20b27578c Signed-off-by: darkleem <cdark.lim@samsung.com>
-rw-r--r--Xamarin.Forms.Platform.Tizen/Native/Dialog.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/Xamarin.Forms.Platform.Tizen/Native/Dialog.cs b/Xamarin.Forms.Platform.Tizen/Native/Dialog.cs
index 6d1dde16..e9d0e246 100644
--- a/Xamarin.Forms.Platform.Tizen/Native/Dialog.cs
+++ b/Xamarin.Forms.Platform.Tizen/Native/Dialog.cs
@@ -144,7 +144,9 @@ namespace Xamarin.Forms.Platform.Tizen.Native
protected override void OnUnrealize()
{
_content?.Unrealize();
-
+ _positiveButton?.Unrealize();
+ _neutralButton?.Unrealize();
+ _negativeButton?.Unrealize();
ApplyButton(ButtonPosition.Positive, null);
ApplyButton(ButtonPosition.Neutral, null);
ApplyButton(ButtonPosition.Negative, null);