mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-20 05:13:30 -07: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:
parent
ff80e0ce66
commit
39efd0e9ff
2 changed files with 1 additions and 2 deletions
|
@ -37,7 +37,6 @@
|
||||||
inline const QString C_COPYRIGHT = u"©"_s;
|
inline const QString C_COPYRIGHT = u"©"_s;
|
||||||
inline const QString C_INEQUALITY = u"≠"_s;
|
inline const QString C_INEQUALITY = u"≠"_s;
|
||||||
inline const QString C_INFINITY = u"∞"_s;
|
inline const QString C_INFINITY = u"∞"_s;
|
||||||
inline const QString C_THIN_SPACE = u" "_s;
|
|
||||||
inline const QString C_UTP = u"μTP"_s;
|
inline const QString C_UTP = u"μTP"_s;
|
||||||
|
|
||||||
inline const QString C_LOCALE_ARABIC = u"عربي"_s;
|
inline const QString C_LOCALE_ARABIC = u"عربي"_s;
|
||||||
|
|
|
@ -137,7 +137,7 @@ QString TorrentContentModelItem::displayData(const int column) const
|
||||||
const QString value = (avail >= 1)
|
const QString value = (avail >= 1)
|
||||||
? u"100"_s
|
? u"100"_s
|
||||||
: Utils::String::fromDouble((avail * 100), 1);
|
: Utils::String::fromDouble((avail * 100), 1);
|
||||||
return (value + C_THIN_SPACE + u'%');
|
return (value + u'%');
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
Q_ASSERT(false);
|
Q_ASSERT(false);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue