From 748969e34dbe28ce9d8e3a8b3b748f774d94cf6c Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Sat, 24 Sep 2022 23:24:33 +0200 Subject: [PATCH] Fixed an issue where the game description would start to scroll too late when running the multi-scraper in semi-automatic mode. --- es-app/src/guis/GuiScraperSearch.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/es-app/src/guis/GuiScraperSearch.cpp b/es-app/src/guis/GuiScraperSearch.cpp index a09bdf55c..89b98f63a 100644 --- a/es-app/src/guis/GuiScraperSearch.cpp +++ b/es-app/src/guis/GuiScraperSearch.cpp @@ -70,7 +70,7 @@ GuiScraperSearch::GuiScraperSearch(SearchType type, unsigned int scrapeCount) mDescContainer = std::make_shared(); // Adjust the game description text scrolling parameters depending on the search type. - if (mSearchType == NEVER_AUTO_ACCEPT) + if (mSearchType == NEVER_AUTO_ACCEPT || mSearchType == ACCEPT_SINGLE_MATCHES) mDescContainer->setScrollParameters(3000.0f, 3000.0f, 0.8f); else mDescContainer->setScrollParameters(6000.0f, 3000.0f, 0.8f);