summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Tizen/Renderers/VisualElementRenderer.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Platform.Tizen/Renderers/VisualElementRenderer.cs')
-rw-r--r--Xamarin.Forms.Platform.Tizen/Renderers/VisualElementRenderer.cs13
1 files changed, 5 insertions, 8 deletions
diff --git a/Xamarin.Forms.Platform.Tizen/Renderers/VisualElementRenderer.cs b/Xamarin.Forms.Platform.Tizen/Renderers/VisualElementRenderer.cs
index 394ec02b..6baff194 100644
--- a/Xamarin.Forms.Platform.Tizen/Renderers/VisualElementRenderer.cs
+++ b/Xamarin.Forms.Platform.Tizen/Renderers/VisualElementRenderer.cs
@@ -44,8 +44,6 @@ namespace Xamarin.Forms.Platform.Tizen
HashSet<string> _batchedProperties = new HashSet<string>();
- internal GestureHandler _gestureHandler;
-
/// <summary>
/// Default constructor.
/// </summary>
@@ -241,7 +239,6 @@ namespace Xamarin.Forms.Platform.Tizen
}
}
-
protected virtual void UpdateLayout()
{
// we're updating the coordinates of native control only if they were modified
@@ -727,7 +724,6 @@ namespace Xamarin.Forms.Platform.Tizen
void OnMoved(object sender, EventArgs e)
{
ApplyTransformation();
- _gestureHandler?.UpdateHitBox();
}
void EnsureChildOrder()
@@ -778,7 +774,9 @@ namespace Xamarin.Forms.Platform.Tizen
NativeView.PassEvents = Element.InputTransparent;
}
- protected virtual void UpdateThemeStyle() {}
+ protected virtual void UpdateThemeStyle()
+ {
+ }
void ApplyRotation(EvasMap map, ERect geometry, ref bool changed)
{
@@ -843,7 +841,7 @@ namespace Xamarin.Forms.Platform.Tizen
}
}
- public void ApplyTransformation()
+ protected virtual void ApplyTransformation()
{
if (null == NativeView)
{
@@ -866,7 +864,6 @@ namespace Xamarin.Forms.Platform.Tizen
{
NativeView.EvasMap = map;
}
- _gestureHandler?.UpdateHitBox();
}
}
@@ -893,4 +890,4 @@ namespace Xamarin.Forms.Platform.Tizen
--s_ignoreCount;
}
}
-}
+} \ No newline at end of file