android: Fix visibility of hidden system titles (#1935)

This commit is contained in:
PabloMK7 2026-03-28 12:04:43 +01:00 committed by GitHub
parent f14f095e72
commit 49b0bef17d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,4 +1,4 @@
// Copyright 2023 Citra Emulator Project
// Copyright Citra Emulator Project / Azahar Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
@ -78,9 +78,10 @@ class GamesViewModel : ViewModel() {
val filteredList = sortedList.filter {
if (it.isSystemTitle) {
it.isVisibleSystemTitle
}
} else {
true
}
}
_games.value = filteredList
}