mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-31 04:38:04 -06:00
Remove thin space
Generally qbt doesn't put a space before percentage symbol. This change makes the UI elements consistent.
This commit is contained in:
@@ -137,7 +137,7 @@ QString TorrentContentModelItem::displayData(const int column) const
|
||||
const QString value = (avail >= 1)
|
||||
? u"100"_s
|
||||
: Utils::String::fromDouble((avail * 100), 1);
|
||||
return (value + C_THIN_SPACE + u'%');
|
||||
return (value + u'%');
|
||||
}
|
||||
default:
|
||||
Q_ASSERT(false);
|
||||
|
||||
Reference in New Issue
Block a user