Go back to UIPanGestureRecognizer for all scroll events

GCMouse is broken in iPad 15 for mice with discrete scroll wheel events
This commit is contained in:
Cameron Gutman
2021-10-05 21:42:37 -05:00
parent c930a4656a
commit d7cf8ced25
2 changed files with 0 additions and 20 deletions

View File

@@ -432,19 +432,6 @@ static const double MOUSE_SPEED_DIVISOR = 2.5;
};
}
}
// TODO: Confirm scroll direction
mouse.mouseInput.scroll.yAxis.valueChangedHandler = ^(GCControllerAxisInput * _Nonnull axis, float value) {
self->accumulatedScrollY += -value;
short truncatedScrollY = (short)self->accumulatedScrollY;
if (truncatedScrollY != 0) {
LiSendHighResScrollEvent(truncatedScrollY);
self->accumulatedScrollY -= truncatedScrollY;
}
};
}
-(void) updateAutoOnScreenControlMode

View File

@@ -449,13 +449,6 @@ static const double X1_MOUSE_SPEED_DIVISOR = 2.5;
}
- (void)mouseWheelMoved:(UIPanGestureRecognizer *)gesture {
if (@available(iOS 14.0, *)) {
if ([GCMouse current] != nil) {
// We'll handle this with GCMouse. Do nothing here.
return;
}
}
switch (gesture.state) {
case UIGestureRecognizerStateBegan:
case UIGestureRecognizerStateChanged: