Skip to content

Commit

Permalink
#1611: swap right and middle
Browse files Browse the repository at this point in the history
git-svn-id: https://xpra.org/svn/Xpra/trunk@16685 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed Aug 11, 2017
1 parent b269226 commit da4be19
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/xpra/x11/x11_server_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,8 @@ def click(self, button, pressed, *_args):
else:
ubutton = {
1 : uinput.BTN_LEFT,
2 : uinput.BTN_RIGHT,
3 : uinput.BTN_MIDDLE,
3 : uinput.BTN_RIGHT,
2 : uinput.BTN_MIDDLE,
8 : uinput.BTN_SIDE,
9 : uinput.BTN_EXTRA,
}.get(button)
Expand Down

0 comments on commit da4be19

Please sign in to comment.