summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Tizen/Renderers/ActivityIndicatorRenderer.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Platform.Tizen/Renderers/ActivityIndicatorRenderer.cs')
-rw-r--r--Xamarin.Forms.Platform.Tizen/Renderers/ActivityIndicatorRenderer.cs14
1 files changed, 2 insertions, 12 deletions
diff --git a/Xamarin.Forms.Platform.Tizen/Renderers/ActivityIndicatorRenderer.cs b/Xamarin.Forms.Platform.Tizen/Renderers/ActivityIndicatorRenderer.cs
index 25e891cf..fdad3c76 100644
--- a/Xamarin.Forms.Platform.Tizen/Renderers/ActivityIndicatorRenderer.cs
+++ b/Xamarin.Forms.Platform.Tizen/Renderers/ActivityIndicatorRenderer.cs
@@ -17,22 +17,12 @@ namespace Xamarin.Forms.Platform.Tizen
{
if (Control == null)
{
- var ac = new EProgressBar(Forms.Context.MainWindow)
+ SetNativeControl(new EProgressBar(Forms.Context.MainWindow)
{
Style = "process_medium",
IsPulseMode = true,
- };
- SetNativeControl(ac);
+ });
}
-
- if (e.OldElement != null)
- {
- }
-
- if (e.NewElement != null)
- {
- }
-
base.OnElementChanged(e);
}