mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-09 17:44:01 -07:00
Remove debug.
Took 3 minutes
This commit is contained in:
parent
1cb45433a2
commit
a7ce1d6119
1 changed files with 1 additions and 2 deletions
|
|
@ -460,9 +460,8 @@ bool GamesProxyModel::filterAcceptsRow(int sourceRow) const
|
|||
if (!QString::fromStdString(game.description()).contains(gameNameFilter, Qt::CaseInsensitive))
|
||||
return false;
|
||||
if (!creatorNameFilters.isEmpty()) {
|
||||
qInfo() << "Creator Name filters: " << creatorNameFilters;
|
||||
bool found = false;
|
||||
for (auto createNameFilter : creatorNameFilters) {
|
||||
for (const auto &createNameFilter : creatorNameFilters) {
|
||||
if (QString::fromStdString(game.creator_info().name()).contains(createNameFilter, Qt::CaseInsensitive)) {
|
||||
found = true;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue