summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.WinRT
diff options
context:
space:
mode:
authorPaul DiPietro <pauldipietro@users.noreply.github.com>2017-02-17 04:42:33 -0600
committerRui Marinho <me@ruimarinho.net>2017-02-17 10:42:33 +0000
commitde3fdf57c7ee0af98e5d958a1a62595636b885f0 (patch)
tree93083e73ef169184ff0151d568c9459c31ec3608 /Xamarin.Forms.Platform.WinRT
parentf449b31918fbc2d3525cd151ff36c27b175887a0 (diff)
downloadxamarin-forms-de3fdf57c7ee0af98e5d958a1a62595636b885f0.tar.gz
xamarin-forms-de3fdf57c7ee0af98e5d958a1a62595636b885f0.tar.bz2
xamarin-forms-de3fdf57c7ee0af98e5d958a1a62595636b885f0.zip
[WinRT/UWP] Insert missing SendScrollFinished call (#751)
Diffstat (limited to 'Xamarin.Forms.Platform.WinRT')
-rw-r--r--Xamarin.Forms.Platform.WinRT/ScrollViewRenderer.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/Xamarin.Forms.Platform.WinRT/ScrollViewRenderer.cs b/Xamarin.Forms.Platform.WinRT/ScrollViewRenderer.cs
index 6938a76e..0be6ba28 100644
--- a/Xamarin.Forms.Platform.WinRT/ScrollViewRenderer.cs
+++ b/Xamarin.Forms.Platform.WinRT/ScrollViewRenderer.cs
@@ -146,6 +146,7 @@ namespace Xamarin.Forms.Platform.WinRT
{
Control.ChangeView(x, y, null, !e.ShouldAnimate);
}
+ Controller.SendScrollFinished();
}
void OnViewChanged(object sender, ScrollViewerViewChangedEventArgs e)