mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-15 01:33:07 -07:00
Add 'Moving' state for torrents being relocated/moved
This is another indication to the user that something is happening behind the scenes. Uses the same icon/color as "Checking" status. Torrents in the `Moving` state are considered as "Active". This should prevent accidental program exit from the user and inhibit system sleep.
This commit is contained in:
parent
5df42420cb
commit
97b8e02bf5
6 changed files with 24 additions and 3 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue