Browse Source

Merge pull request #6527 from epicgirl1998/patch-1

Remove extra space between category names and torrent counts
adaptive-webui-19844
sledgehammer999 8 years ago committed by GitHub
parent
commit
3dba24bfe0
  1. 2
      src/gui/categoryfiltermodel.cpp

2
src/gui/categoryfiltermodel.cpp

@ -211,7 +211,7 @@ QVariant CategoryFilterModel::data(const QModelIndex &index, int role) const @@ -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());
}

Loading…
Cancel
Save