Skip to content

Commit

Permalink
#1797: invert X-direction buttons
Browse files Browse the repository at this point in the history
git-svn-id: https://xpra.org/svn/Xpra/trunk@19574 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed Jun 6, 2018
1 parent fa58e36 commit fa0eb71
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/html5/js/Client.js
Original file line number Diff line number Diff line change
Expand Up @@ -1227,10 +1227,10 @@ XpraClient.prototype.do_window_mouse_click = function(e, window, pressed) {
var button = mouse.button;
this.debug("mouse", "click:", button, pressed, x, y);
if (button==4) {
button = 8;
button = 9;
}
else if (button==5) {
button = 9;
button = 8;
}
var me = this;
setTimeout(function() {
Expand Down

0 comments on commit fa0eb71

Please sign in to comment.