mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-16 02:03:07 -07:00
parent
65771d66fc
commit
7a41192597
38 changed files with 421 additions and 251 deletions
|
@ -380,7 +380,10 @@ QString TransferListModel::displayValue(const BitTorrent::Torrent *torrent, cons
|
|||
case TR_CATEGORY:
|
||||
return torrent->category();
|
||||
case TR_TAGS:
|
||||
return torrent->tags().join(u", "_s);
|
||||
{
|
||||
const TagSet &tags = torrent->tags();
|
||||
return QStringList(tags.cbegin(), tags.cend()).join(u", "_s);
|
||||
}
|
||||
case TR_ADD_DATE:
|
||||
return QLocale().toString(torrent->addedTime().toLocalTime(), QLocale::ShortFormat);
|
||||
case TR_SEED_DATE:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue