summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Tizen
diff options
context:
space:
mode:
authorKangho Hur <kangho.hur@samsung.com>2017-05-17 05:09:38 +0000
committerGerrit Code Review <gerrit@review.ap-northeast-2.compute.internal>2017-05-17 05:09:38 +0000
commitcae6df7d4f2d40069ee490fb8ca2563a4600b79b (patch)
tree4647f4a118be712ca0b3f7e2408de91dca0e9c4e /Xamarin.Forms.Platform.Tizen
parentf17bbd72f03ea19806f3460d4b68ce1d8475e385 (diff)
parentbd4594422edf01a62895567148ec2dae6bc26757 (diff)
downloadxamarin-forms-cae6df7d4f2d40069ee490fb8ca2563a4600b79b.tar.gz
xamarin-forms-cae6df7d4f2d40069ee490fb8ca2563a4600b79b.tar.bz2
xamarin-forms-cae6df7d4f2d40069ee490fb8ca2563a4600b79b.zip
Merge "fix native.dialog unrealize issue" into tizen
Diffstat (limited to 'Xamarin.Forms.Platform.Tizen')
-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);