From 9974f6c56f379d3115f35326e60c0c854dac7c40 Mon Sep 17 00:00:00 2001 From: Mikko Mustonen Date: Sat, 15 Dec 2018 15:10:06 +0200 Subject: switch middle and secondary mouse buttons order --- platform/x11/os_x11.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/platform/x11/os_x11.cpp b/platform/x11/os_x11.cpp index 7b30e7a064..34ec8709c4 100644 --- a/platform/x11/os_x11.cpp +++ b/platform/x11/os_x11.cpp @@ -2080,14 +2080,14 @@ void OS_X11::process_xevents() { mb.instance(); get_key_modifier_state(event.xbutton.state, mb); + mb->set_button_index(event.xbutton.button); if (mb->get_button_index() == 2) mb->set_button_index(3); else if (mb->get_button_index() == 3) mb->set_button_index(2); - mb->set_button_mask(get_mouse_button_state(event.xbutton.button, event.xbutton.type)); + mb->set_button_mask(get_mouse_button_state(mb->get_button_index(), event.xbutton.type)); mb->set_position(Vector2(event.xbutton.x, event.xbutton.y)); mb->set_global_position(mb->get_position()); - mb->set_button_index(event.xbutton.button); mb->set_pressed((event.type == ButtonPress)); -- cgit v1.2.3