summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrina6350.you <rina6350.you@samsung.com>2017-05-30 15:35:57 +0900
committerrina6350.you <rina6350.you@samsung.com>2017-05-30 15:47:09 +0900
commitaac7c7a3cd2db630d892343c452d87d4bd7bc733 (patch)
tree11474fe9678958efeab23a9d2f6b6ff0722cca4b
parentae4a8256171600a0fa3f7f8da00c3e5e996c9d48 (diff)
downloadxamarin-forms-aac7c7a3cd2db630d892343c452d87d4bd7bc733.tar.gz
xamarin-forms-aac7c7a3cd2db630d892343c452d87d4bd7bc733.tar.bz2
xamarin-forms-aac7c7a3cd2db630d892343c452d87d4bd7bc733.zip
Fix the ProgressBar issue for initial value
TASK=TCAPI-2394 change-Id: I384b0f2891f535870b4f6870d6aab254cabe4dca
-rwxr-xr-x[-rw-r--r--]Xamarin.Forms.Platform.Tizen/Renderers/ProgressBarRenderer.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/Xamarin.Forms.Platform.Tizen/Renderers/ProgressBarRenderer.cs b/Xamarin.Forms.Platform.Tizen/Renderers/ProgressBarRenderer.cs
index 444bc852..d7471b43 100644..100755
--- a/Xamarin.Forms.Platform.Tizen/Renderers/ProgressBarRenderer.cs
+++ b/Xamarin.Forms.Platform.Tizen/Renderers/ProgressBarRenderer.cs
@@ -55,7 +55,9 @@ namespace Xamarin.Forms.Platform.Tizen
protected override void UpdateThemeStyle()
{
- Control.Style = SpecificVE.GetStyle(Element);
+ var themeStyle = SpecificVE.GetStyle(Element);
+ if (!string.IsNullOrEmpty(themeStyle))
+ Control.Style = themeStyle;
}
void UpdateAll()