Remove extra space

fixes https://github.com/qbittorrent/qBittorrent/issues/6523
This commit is contained in:
epicgirl1998 2017-03-17 03:43:49 +02:00 committed by sledgehammer999
parent a363ed6d7c
commit 5b72595547
No known key found for this signature in database
GPG key ID: 6E4A2D025B7CC9A2

View file

@ -211,7 +211,7 @@ QVariant CategoryFilterModel::data(const QModelIndex &index, int role) const
}
if ((index.column() == 0) && (role == Qt::DisplayRole)) {
return QString(QStringLiteral("%1 (%2)"))
return QString(QStringLiteral("%1 (%2)"))
.arg(item->name()).arg(item->torrentsCount());
}