Refactor TabAccount and create UserListManager

This commit is contained in:
ZeldaZach 2025-01-14 00:14:41 -05:00
parent 6309e7e318
commit 1d3f5586c5
No known key found for this signature in database
10 changed files with 285 additions and 186 deletions

View file

@ -508,7 +508,7 @@ bool GamesProxyModel::filterAcceptsRow(int sourceRow) const
if (!showBuddiesOnlyGames && game.only_buddies()) {
return false;
}
if (hideIgnoredUserGames && tabSupervisor->getUserListsTab()->getIgnoreList()->getUsers().contains(
if (hideIgnoredUserGames && tabSupervisor->getUserListManger()->getIgnoreList()->getUsers().contains(
QString::fromStdString(game.creator_info().name()))) {
return false;
}