From f7d72487eba5fa3092664b8e59023b7c982a8781 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Thu, 7 Jun 2018 03:57:34 +0000 Subject: [PATCH] revert r19574 - no indication that wheel direction was wrong in the first place git-svn-id: https://xpra.org/svn/Xpra/trunk@19575 3bb7dfac-3a0b-4e04-842a-767bc560f471 --- src/html5/js/Client.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/html5/js/Client.js b/src/html5/js/Client.js index 1245f35c4e..b773cf5ba3 100644 --- a/src/html5/js/Client.js +++ b/src/html5/js/Client.js @@ -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 = 9; + button = 8; } else if (button==5) { - button = 8; + button = 9; } var me = this; setTimeout(function() {