diff --git a/src/RemoteModel.cpp b/src/RemoteModel.cpp index 7dfb1111..43bfa766 100644 --- a/src/RemoteModel.cpp +++ b/src/RemoteModel.cpp @@ -243,7 +243,7 @@ QVariant RemoteModel::data(const QModelIndex& index, int role) const unit = it.next(); size /= 1024.0; } - return QString().setNum(size, 'f', 2).remove(".00") + " " + unit; + return QString().setNum(size, 'f', 2).remove(".00") + QString(" ") + unit; } } }