summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.iOS/Renderers/EditorRenderer.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Platform.iOS/Renderers/EditorRenderer.cs')
-rw-r--r--Xamarin.Forms.Platform.iOS/Renderers/EditorRenderer.cs10
1 files changed, 0 insertions, 10 deletions
diff --git a/Xamarin.Forms.Platform.iOS/Renderers/EditorRenderer.cs b/Xamarin.Forms.Platform.iOS/Renderers/EditorRenderer.cs
index 8819ba33..c92ccb4b 100644
--- a/Xamarin.Forms.Platform.iOS/Renderers/EditorRenderer.cs
+++ b/Xamarin.Forms.Platform.iOS/Renderers/EditorRenderer.cs
@@ -11,16 +11,6 @@ namespace Xamarin.Forms.Platform.iOS
IElementController ElementController => Element as IElementController;
- public override SizeRequest GetDesiredSize(double widthConstraint, double heightConstraint)
- {
- if (!Forms.IsiOS7OrNewer)
- {
- // Avoid crash iOS 6. iOS 6, I hate you. Why you no like Infinite size?
- return base.GetDesiredSize(Math.Min(widthConstraint, 2000), Math.Min(heightConstraint, 2000));
- }
- return base.GetDesiredSize(widthConstraint, heightConstraint);
- }
-
protected override void Dispose(bool disposing)
{
if (disposing)