From 68668cfefa3d2e90564c381f9f55167df75e4a75 Mon Sep 17 00:00:00 2001 From: Shin'ya Ueoka Date: Mon, 11 Feb 2019 20:07:46 +0900 Subject: [PATCH] Increase scroll delta --- src/content/scrolls.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/content/scrolls.js b/src/content/scrolls.js index ce297b3..a307aa7 100644 --- a/src/content/scrolls.js +++ b/src/content/scrolls.js @@ -1,7 +1,7 @@ import * as doms from 'shared/utils/dom'; -const SCROLL_DELTA_X = 48; -const SCROLL_DELTA_Y = 48; +const SCROLL_DELTA_X = 64; +const SCROLL_DELTA_Y = 64; // dirty way to store scrolling state on globally let scrolling = false;