From d2c6961ff2ce135ac8e8b78f1d41b86ee1e73c87 Mon Sep 17 00:00:00 2001
From: joni <johnfshaughnessy@gmail.com>
Date: Wed, 6 Jun 2018 16:12:33 -0700
Subject: [PATCH] Increase scroll strength

---
 src/behaviours/trackpad-scrolling.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/behaviours/trackpad-scrolling.js b/src/behaviours/trackpad-scrolling.js
index a64cd3405..58f043ffe 100644
--- a/src/behaviours/trackpad-scrolling.js
+++ b/src/behaviours/trackpad-scrolling.js
@@ -40,8 +40,8 @@ trackpad_scrolling.prototype = {
       return;
     }
 
-    this.axis[0] = x - this.x;
-    this.axis[1] = y - this.y;
+    this.axis[0] = (x - this.x) * 8;
+    this.axis[1] = (y - this.y) * 8;
     this.emittedEventDetail.axis = this.axis;
     e.target.emit("scroll", this.emittedEventDetail);
     this.x = x;
-- 
GitLab