From 170234cd937e67b3568b17001e8ec0ed2467488c Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Tue, 20 Sep 2022 21:26:56 +0200 Subject: [PATCH] Fixed an issue where the quick list scrolling overlay would not disappear as intended. --- es-app/src/views/GamelistView.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/es-app/src/views/GamelistView.cpp b/es-app/src/views/GamelistView.cpp index 74f550d4f..e1619fe7f 100644 --- a/es-app/src/views/GamelistView.cpp +++ b/es-app/src/views/GamelistView.cpp @@ -88,6 +88,8 @@ void GamelistView::onTransition() for (auto& animation : mGIFAnimComponents) animation->setPauseAnimation(true); + + mWindow->renderListScrollOverlay(0.0f, ""); } void GamelistView::onThemeChanged(const std::shared_ptr& theme)