Browse Source
cleanup(PinchGestureRecognizer): Removing unused methods (#13229)
pull/13313/head
workgroupengineering
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
0 additions and
10 deletions
-
src/Avalonia.Base/Input/GestureRecognizers/PinchGestureRecognizer.cs
|
|
|
@ -11,16 +11,6 @@ namespace Avalonia.Input |
|
|
|
private Point _secondPoint; |
|
|
|
private Point _origin; |
|
|
|
|
|
|
|
private void OnPointerPressed(object? sender, PointerPressedEventArgs e) |
|
|
|
{ |
|
|
|
PointerPressed(e); |
|
|
|
} |
|
|
|
|
|
|
|
private void OnPointerReleased(object? sender, PointerReleasedEventArgs e) |
|
|
|
{ |
|
|
|
PointerReleased(e); |
|
|
|
} |
|
|
|
|
|
|
|
protected override void PointerCaptureLost(IPointer pointer) |
|
|
|
{ |
|
|
|
RemoveContact(pointer); |
|
|
|
|