mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-12-21 08:09:35 +08:00
parent
a4e7e546ff
commit
8f2cdcef0e
@ -140,11 +140,11 @@ QString TorrentContentModelItem::displayData(const int column) const
|
||||
return Utils::Misc::friendlyUnit(remaining());
|
||||
case COL_AVAILABILITY:
|
||||
{
|
||||
const int avail = availability();
|
||||
const qreal avail = availability();
|
||||
if (avail < 0)
|
||||
return tr("N/A");
|
||||
|
||||
const QString value = (avail >= 1.0)
|
||||
const QString value = (avail >= 1)
|
||||
? QString::fromLatin1("100")
|
||||
: Utils::String::fromDouble((avail * 100), 1);
|
||||
return QString {value + C_THIN_SPACE + QLatin1Char('%')};
|
||||
|
Loading…
Reference in New Issue
Block a user