Merge pull request #70498 from bruvzg/macos_tilt_fix

[macOS] Fix stylus tilt Y direction.
This commit is contained in:
Rémi Verschelde
2023-01-03 15:50:28 +01:00

View File

@@ -440,7 +440,7 @@
NSEventSubtype subtype = [event subtype];
if (subtype == NSEventSubtypeTabletPoint) {
const NSPoint p = [event tilt];
mm->set_tilt(Vector2(p.x, p.y));
mm->set_tilt(Vector2(p.x, -p.y));
mm->set_pen_inverted(last_pen_inverted);
} else if (subtype == NSEventSubtypeTabletProximity) {
// Check if using the eraser end of pen only on proximity event.