From 5b93c40365846932d1c55e2f6ae8e175e5934b17 Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Sat, 15 Aug 2020 10:15:17 +0200 Subject: [PATCH] Adjusted the scroll speed and scroll delay for the game descriptions. --- es-core/src/components/ScrollableContainer.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/es-core/src/components/ScrollableContainer.cpp b/es-core/src/components/ScrollableContainer.cpp index 4e185a46f..577e2ab28 100644 --- a/es-core/src/components/ScrollableContainer.cpp +++ b/es-core/src/components/ScrollableContainer.cpp @@ -11,8 +11,8 @@ #include "renderers/Renderer.h" #define AUTO_SCROLL_RESET_DELAY 3000 // ms to reset to top after we reach the bottom. -#define AUTO_SCROLL_DELAY 1000 // ms to wait before we start to scroll. -#define AUTO_SCROLL_SPEED 100 // ms between scrolls. +#define AUTO_SCROLL_DELAY 2000 // ms to wait before we start to scroll. +#define AUTO_SCROLL_SPEED 130 // ms between scrolls. ScrollableContainer::ScrollableContainer( Window* window)