summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Tizen
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-07-10 11:11:26 +0900
commita3c5807c6965889e88760078a4fa3b0e4d86d8ae (patch)
tree890654a9c24c827a8f2661cbc7abb9503c4183e6 /Xamarin.Forms.Platform.Tizen
parent9cd9a4f1586713c51283eb4cd263280237c6d4e3 (diff)
downloadxamarin-forms-a3c5807c6965889e88760078a4fa3b0e4d86d8ae.tar.gz
xamarin-forms-a3c5807c6965889e88760078a4fa3b0e4d86d8ae.tar.bz2
xamarin-forms-a3c5807c6965889e88760078a4fa3b0e4d86d8ae.zip
Add temporary solution for Button.Image issue
Change-Id: I2dcbcaaf749e8e181edfebb79d4c00a798ffef63 Signed-off-by: SungHyun Min <shyun.min@samsung.com>
Diffstat (limited to 'Xamarin.Forms.Platform.Tizen')
-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();
}
}