GameListModel: Remove fallthrough in data()

A harmless case of it, but this can still cause warnings.
This commit is contained in:
Lioncash 2023-12-14 04:25:37 -05:00
parent fe014dac06
commit 6bbdf36a7b
1 changed files with 1 additions and 0 deletions

View File

@ -195,6 +195,7 @@ QVariant GameListModel::data(const QModelIndex& index, int role) const
return tags.join(QStringLiteral(", "));
}
break;
default:
break;
}