diff --git a/src/Controls/tests/TestCases.Mac.Tests/snapshots/mac/EntryClearButtonColorShouldMatchTextColor.png b/src/Controls/tests/TestCases.Mac.Tests/snapshots/mac/EntryClearButtonColorShouldMatchTextColor.png index 19b35e24cce2..213bb341426d 100644 Binary files a/src/Controls/tests/TestCases.Mac.Tests/snapshots/mac/EntryClearButtonColorShouldMatchTextColor.png and b/src/Controls/tests/TestCases.Mac.Tests/snapshots/mac/EntryClearButtonColorShouldMatchTextColor.png differ diff --git a/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios/ReorderBetweenGroupsShouldNotOccurWhenCanMixGroupsIsFalse.png b/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios/ReorderBetweenGroupsShouldNotOccurWhenCanMixGroupsIsFalse.png index f64c10a261ff..8d1ec88316fe 100644 Binary files a/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios/ReorderBetweenGroupsShouldNotOccurWhenCanMixGroupsIsFalse.png and b/src/Controls/tests/TestCases.iOS.Tests/snapshots/ios/ReorderBetweenGroupsShouldNotOccurWhenCanMixGroupsIsFalse.png differ diff --git a/src/Core/src/Handlers/ScrollView/ScrollViewHandler.iOS.cs b/src/Core/src/Handlers/ScrollView/ScrollViewHandler.iOS.cs index c8e7d6620fba..36debcf218b8 100644 --- a/src/Core/src/Handlers/ScrollView/ScrollViewHandler.iOS.cs +++ b/src/Core/src/Handlers/ScrollView/ScrollViewHandler.iOS.cs @@ -83,14 +83,7 @@ public static void MapOrientation(IScrollViewHandler handler, IScrollView scroll return; } - if (scrollView.Orientation == ScrollOrientation.Neither) - { - platformView.ScrollEnabled = false; - } - else - { - platformView.ScrollEnabled = true; - } + platformView.UpdateIsEnabled(scrollView); platformView.InvalidateMeasure(scrollView); }