mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2026-01-02 13:48:05 -06:00
Merge pull request #8716 from sledgehammer999/move_progress
Move and recheck progress
This commit is contained in:
@@ -349,6 +349,7 @@ QIcon getIconByState(BitTorrent::TorrentState state)
|
||||
case BitTorrent::TorrentState::QueuedForChecking:
|
||||
#endif
|
||||
case BitTorrent::TorrentState::CheckingResumeData:
|
||||
case BitTorrent::TorrentState::Moving:
|
||||
return getCheckingIcon();
|
||||
case BitTorrent::TorrentState::Unknown:
|
||||
case BitTorrent::TorrentState::MissingFiles:
|
||||
@@ -404,6 +405,7 @@ QColor getColorByState(BitTorrent::TorrentState state)
|
||||
case BitTorrent::TorrentState::QueuedForChecking:
|
||||
#endif
|
||||
case BitTorrent::TorrentState::CheckingResumeData:
|
||||
case BitTorrent::TorrentState::Moving:
|
||||
if (!dark)
|
||||
return QColor(0, 128, 128); // Teal
|
||||
else
|
||||
|
||||
@@ -272,6 +272,9 @@ QString TransferListDelegate::getStatusString(const BitTorrent::TorrentState sta
|
||||
case BitTorrent::TorrentState::PausedUploading:
|
||||
str = tr("Completed");
|
||||
break;
|
||||
case BitTorrent::TorrentState::Moving:
|
||||
str = tr("Moving", "Torrent local data are being moved/relocated");
|
||||
break;
|
||||
case BitTorrent::TorrentState::MissingFiles:
|
||||
str = tr("Missing Files");
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user