mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-01-06 15:04:34 +08:00
Merge pull request #12464 from Chocobo1/date
Fix date format for "Last seen complete"
This commit is contained in:
commit
0429ca3fb5
@ -359,7 +359,7 @@ QString TransferListModel::displayValue(const BitTorrent::TorrentHandle *torrent
|
||||
case TR_COMPLETED:
|
||||
return unitString(torrent->completedSize());
|
||||
case TR_SEEN_COMPLETE_DATE:
|
||||
return torrent->lastSeenComplete().toString();
|
||||
return torrent->lastSeenComplete().toLocalTime().toString(Qt::DefaultLocaleShortDate);
|
||||
case TR_LAST_ACTIVITY:
|
||||
return lastActivityString((torrent->isPaused() || torrent->isChecking()) ? -1 : torrent->timeSinceActivity());
|
||||
case TR_AVAILABILITY:
|
||||
|
Loading…
Reference in New Issue
Block a user