Skip to content

Commit ee2d0b5

Browse files
committed
fix: merge conflict
1 parent ee026b2 commit ee2d0b5

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/Uno.UI/UI/Xaml/Controls/ScrollViewer/ScrollViewer.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ namespace Windows.UI.Xaml.Controls
4747
{
4848
public partial class ScrollViewer : ContentControl, IFrameworkTemplatePoolAware
4949
{
50-
private bool m_isInDirectManipulation;
5150
private bool m_isInConstantVelocityPan;
5251

5352
private static class Parts
@@ -1510,9 +1509,7 @@ internal bool BringIntoViewport(Rect bounds,
15101509
#endif
15111510
}
15121511

1513-
internal bool IsInDirectManipulation => m_isInDirectManipulation;
1514-
1515-
internal bool IsInManipulation => m_isInDirectManipulation || m_isInConstantVelocityPan;
1512+
internal bool IsInManipulation => IsInDirectManipulation || m_isInConstantVelocityPan;
15161513

15171514
internal bool ForceChangeToCurrentView { get; set; } = false;
15181515

0 commit comments

Comments
 (0)