From bd4594422edf01a62895567148ec2dae6bc26757 Mon Sep 17 00:00:00 2001 From: darkleem Date: Tue, 16 May 2017 19:05:17 +0900 Subject: fix native.dialog unrealize issue Change-Id: I85debf0424ce08aad63b9ffcc800afc20b27578c Signed-off-by: darkleem --- Xamarin.Forms.Platform.Tizen/Native/Dialog.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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); -- cgit v1.2.3