summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Tizen/Native/Button.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Platform.Tizen/Native/Button.cs')
-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();
}
}