From a1db5561e02b3f94dee13148ff24ecd897d51c4d Mon Sep 17 00:00:00 2001 From: Daniel Lee Date: Tue, 6 Mar 2018 20:07:28 +0100 Subject: [PATCH] scrolling: faster wheelspeed ref #11053 (cherry picked from commit 8e81dc1e7903256c4b84048537f63d5b1b93497c) --- public/app/core/components/scroll/scroll.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/public/app/core/components/scroll/scroll.ts b/public/app/core/components/scroll/scroll.ts index 720334d8973..fbf5fd6cd37 100644 --- a/public/app/core/components/scroll/scroll.ts +++ b/public/app/core/components/scroll/scroll.ts @@ -8,6 +8,7 @@ export function geminiScrollbar() { link: function(scope, elem, attrs) { let scrollbar = new PerfectScrollbar(elem[0], { wheelPropagation: true, + wheelSpeed: 3, }); let lastPos = 0;