summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSungHyun Min <shyun.min@samsung.com>2017-05-19 17:31:02 +0900
committerKangho Hur <kangho.hur@samsung.com>2017-10-23 13:34:35 +0900
commitdc0cb0c0ce0596d21c30b08891525c894e22d36d (patch)
tree2b61755a25beb4663af177745584f8f46d3e8d75
parent288f16b1b399822c72b087d4fdb839896377dadf (diff)
downloadxamarin-forms-dc0cb0c0ce0596d21c30b08891525c894e22d36d.tar.gz
xamarin-forms-dc0cb0c0ce0596d21c30b08891525c894e22d36d.tar.bz2
xamarin-forms-dc0cb0c0ce0596d21c30b08891525c894e22d36d.zip
Add temporary solution for Button.Image issue
Change-Id: I2dcbcaaf749e8e181edfebb79d4c00a798ffef63 Signed-off-by: SungHyun Min <shyun.min@samsung.com>
-rw-r--r--Xamarin.Forms.Platform.Tizen/Native/Button.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/Xamarin.Forms.Platform.Tizen/Native/Button.cs b/Xamarin.Forms.Platform.Tizen/Native/Button.cs
index e6e05556..c6638662 100644
--- a/Xamarin.Forms.Platform.Tizen/Native/Button.cs
+++ b/Xamarin.Forms.Platform.Tizen/Native/Button.cs
@@ -293,7 +293,11 @@ namespace Xamarin.Forms.Platform.Tizen.Native
}
else
{
+ // TODO : Hide() and Show() should be removed later.
+ // these methods are called to trigger rendering process because of EFL issue.
+ Hide();
SetPartContent("icon", _image);
+ Show();
}
}