[gnome-shell/wip/exalm/scroll: 1/2] appDisplay: Lower scroll timeout



commit 6895592a7becd7f3f76fd10da599944b8bda2407
Author: Alexander Mikhaylenko <exalm7659 gmail com>
Date:   Sat May 9 19:26:37 2020 +0500

    appDisplay: Lower scroll timeout
    
    Looks like 250ms is too high, lower it to 150ms.
    
    https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/2602

 js/ui/appDisplay.js | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
---
diff --git a/js/ui/appDisplay.js b/js/ui/appDisplay.js
index 8848817a0d..5c44401dda 100644
--- a/js/ui/appDisplay.js
+++ b/js/ui/appDisplay.js
@@ -35,6 +35,7 @@ var VIEWS_SWITCH_TIME = 400;
 var VIEWS_SWITCH_ANIMATION_DELAY = 100;
 
 var PAGE_SWITCH_TIME = 250;
+var SCROLL_TIMEOUT_TIME = 150;
 
 var APP_ICON_SCALE_IN_TIME = 500;
 var APP_ICON_SCALE_IN_DELAY = 700;
@@ -658,7 +659,7 @@ var AllView = GObject.registerClass({
 
         this._canScroll = false;
         this._scrollTimeoutId = GLib.timeout_add(GLib.PRIORITY_DEFAULT,
-            PAGE_SWITCH_TIME, () => {
+            SCROLL_TIMEOUT_TIME, () => {
                 this._canScroll = true;
                 this._scrollTimeoutId = 0;
                 return GLib.SOURCE_REMOVE;


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]