mirror of
https://github.com/godotengine/godot.git
synced 2024-11-26 22:23:04 +00:00
osx: fix inverted horizontal scrolling
This commit is contained in:
parent
1b806ef54e
commit
02eddbf7da
@ -813,7 +813,7 @@ static int translateKey(unsigned int key)
|
||||
|
||||
InputEvent ev;
|
||||
ev.type=InputEvent::MOUSE_BUTTON;
|
||||
ev.mouse_button.button_index=deltaX >0 ? BUTTON_WHEEL_RIGHT : BUTTON_WHEEL_LEFT;
|
||||
ev.mouse_button.button_index=deltaX < 0 ? BUTTON_WHEEL_RIGHT : BUTTON_WHEEL_LEFT;
|
||||
ev.mouse_button.pressed=true;
|
||||
ev.mouse_button.x=mouse_x;
|
||||
ev.mouse_button.y=mouse_y;
|
||||
|
Loading…
Reference in New Issue
Block a user