mirror of
https://github.com/moonlight-stream/moonlight-ios.git
synced 2026-04-23 08:47:02 +00:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user