Apply sorting to category-views also.

I think this code-path was relying on database sorting, which was a bug.
This commit is contained in:
Daniel Johnson 2024-02-18 13:52:27 -05:00 committed by Mathieu Comandon
parent 921ec55c72
commit bd9c4327b6

View file

@ -475,7 +475,7 @@ class LutrisWindow(Gtk.ApplicationWindow,
excludes=excludes
)
if game_ids is not None:
return [game for game in games if game["id"] in game_ids]
games = [game for game in games if game["id"] in game_ids]
return self.apply_view_sort(games)
def get_sql_filters(self):