[macOS] Fix stylus tilt Y direction.

This commit is contained in:
bruvzg 2022-12-23 23:39:46 +02:00
parent 5784bf1be0
commit 5478f9b842
No known key found for this signature in database
GPG key ID: 7960FCF39844EC38

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.