From f904cfa32da9f7f5f6a2016f6a2eda78b24b633b Mon Sep 17 00:00:00 2001 From: epicgirl1998 Date: Fri, 17 Mar 2017 03:43:49 +0200 Subject: [PATCH] Remove extra space fixes https://github.com/qbittorrent/qBittorrent/issues/6523 --- src/gui/categoryfiltermodel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/categoryfiltermodel.cpp b/src/gui/categoryfiltermodel.cpp index 4ceb7693e..715bdd7af 100644 --- a/src/gui/categoryfiltermodel.cpp +++ b/src/gui/categoryfiltermodel.cpp @@ -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()); }