From c2a86179329d47215f4f296b042951b8a73f765a Mon Sep 17 00:00:00 2001 From: cmitu <31816814+cmitu@users.noreply.github.com> Date: Mon, 3 Feb 2020 05:53:11 +0000 Subject: [PATCH] input: fix the infinite scrolling with the left shoulder button after #631 --- es-app/src/components/TextListComponent.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/es-app/src/components/TextListComponent.h b/es-app/src/components/TextListComponent.h index 002fe5535..b0124f22b 100644 --- a/es-app/src/components/TextListComponent.h +++ b/es-app/src/components/TextListComponent.h @@ -282,7 +282,7 @@ bool TextListComponent::input(InputConfig* config, Input input) } }else{ if(config->isMappedLike("down", input) || config->isMappedLike("up", input) || - config->isMappedLike("rightshoulder", input) || config->isMappedTo("leftshoulder", input)) + config->isMappedLike("rightshoulder", input) || config->isMappedLike("leftshoulder", input)) { stopScrolling(); }