Browse Source

Show proper string when torrent availability is not available

adaptive-webui-19844
Chocobo1 4 years ago
parent
commit
e4f7d607e1
No known key found for this signature in database
GPG Key ID: 210D9C873253A68C
  1. 7
      src/gui/transferlistmodel.cpp

7
src/gui/transferlistmodel.cpp

@ -244,8 +244,11 @@ QString TransferListModel::displayValue(const BitTorrent::Torrent *torrent, cons @@ -244,8 +244,11 @@ QString TransferListModel::displayValue(const BitTorrent::Torrent *torrent, cons
const auto availabilityString = [hideValues](const qreal value) -> QString
{
return (hideValues && (value <= 0))
? QString {} : Utils::String::fromDouble(value, 3);
if (hideValues && (value == 0))
return {};
return (value >= 0)
? Utils::String::fromDouble(value, 3)
: tr("N/A");
};
const auto unitString = [hideValues](const qint64 value, const bool isSpeedUnit = false) -> QString

Loading…
Cancel
Save