From 1d17dc2531e10f2c00443aa7f740c0b694e4901d Mon Sep 17 00:00:00 2001 From: Rodrigo Date: Sat, 7 Nov 2020 01:08:14 +0100 Subject: [PATCH] Fix Search --- theme.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/theme.qml b/theme.qml index 5034e39..95d0351 100644 --- a/theme.qml +++ b/theme.qml @@ -28,7 +28,7 @@ FocusScope { if (currentCollection.shortName === "all-lastplayed") return api.allGames.get(allLastPlayed.mapToSource(currentGameIndex)) if (searchValue !== '') - return api.allGames.get(searchGames.mapToSource(currentGameIndex)) + return currentCollection.games.get(searchGames.mapToSource(currentGameIndex)) return currentCollection.games.get(currentGameIndex) }