From 9ad230bc3fe2c29c0de27b38066bbf61653af9b4 Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Tue, 27 Oct 2020 18:55:27 +0100 Subject: [PATCH] Fixed an issue where gamelist filters were not applied correctly. --- es-app/src/views/gamelist/ISimpleGameListView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/es-app/src/views/gamelist/ISimpleGameListView.cpp b/es-app/src/views/gamelist/ISimpleGameListView.cpp index 9ea3eb6ad..61ec99c5a 100644 --- a/es-app/src/views/gamelist/ISimpleGameListView.cpp +++ b/es-app/src/views/gamelist/ISimpleGameListView.cpp @@ -125,7 +125,7 @@ bool ISimpleGameListView::input(InputConfig* config, Input input) ViewController::get()->resetMovingCamera(); if (mCursorStack.size()) { NavigationSounds::getInstance()->playThemeNavigationSound(BACKSOUND); - populateList(mCursorStack.top()->getParent()->getChildren()); + populateList(mCursorStack.top()->getParent()->getChildrenListToDisplay()); setCursor(mCursorStack.top()); mCursorStack.pop(); }