From: SungHyun Min Date: Fri, 19 May 2017 08:31:02 +0000 (+0900) Subject: Add temporary solution for Button.Image issue X-Git-Tag: accepted/tizen/4.0/unified/20170816.011313~52 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a3c5807c6965889e88760078a4fa3b0e4d86d8ae;p=platform%2Fupstream%2Fxamarin-forms.git Add temporary solution for Button.Image issue Change-Id: I2dcbcaaf749e8e181edfebb79d4c00a798ffef63 Signed-off-by: SungHyun Min --- diff --git a/Xamarin.Forms.Platform.Tizen/Native/Button.cs b/Xamarin.Forms.Platform.Tizen/Native/Button.cs index e6e0555..c663866 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(); } }