mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-01-18 21:43:54 +03:00
Fix 'Amount Uploaded' contradiction between main view and properties widget
This commit is contained in:
parent
680998f9c2
commit
54e99b73d6
1 changed files with 1 additions and 1 deletions
|
@ -190,7 +190,7 @@ QVariant TorrentModelItem::data(int column, int role) const
|
|||
case TR_UPLIMIT:
|
||||
return m_torrent.upload_limit();
|
||||
case TR_AMOUNT_DOWNLOADED:
|
||||
return static_cast<qlonglong>(m_torrent.total_wanted_done());
|
||||
return static_cast<qlonglong>(m_torrent.all_time_download());
|
||||
case TR_AMOUNT_UPLOADED:
|
||||
return static_cast<qlonglong>(m_torrent.all_time_upload());
|
||||
case TR_AMOUNT_LEFT:
|
||||
|
|
Loading…
Add table
Reference in a new issue