summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Tizen
diff options
context:
space:
mode:
authorrina6350.you <rina6350.you@samsung.com>2017-05-30 15:35:57 +0900
committerKangho Hur <kangho.hur@samsung.com>2017-07-10 11:11:26 +0900
commit84426903b24c0ed92c61eae85842c78473892f25 (patch)
tree7b3bc43f184d265e778f234eaec9b606ff2002fb /Xamarin.Forms.Platform.Tizen
parent8d3e646ab6dcb8ce13058cd182cd61540573e30b (diff)
downloadxamarin-forms-84426903b24c0ed92c61eae85842c78473892f25.tar.gz
xamarin-forms-84426903b24c0ed92c61eae85842c78473892f25.tar.bz2
xamarin-forms-84426903b24c0ed92c61eae85842c78473892f25.zip
Fix the ProgressBar issue for initial value
TASK=TCAPI-2394 change-Id: I384b0f2891f535870b4f6870d6aab254cabe4dca
Diffstat (limited to 'Xamarin.Forms.Platform.Tizen')
-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()