Add a "Moving" status filter

Because sometime (when your save and download path are on different drives, when your disk drive is super busy, ...) move operations can stack up, I add this "Moving" status filter so you can see in a blink of the eye which torrents are in a move state.

PR #17810.
This commit is contained in:
tristanleboss
2022-10-14 07:12:51 +02:00
committed by GitHub
parent 17a5bd03c5
commit e028d8085b
7 changed files with 22 additions and 0 deletions

View File

@@ -873,6 +873,11 @@ bool TorrentImpl::isDownloading() const
return false;
}
bool TorrentImpl::isMoving() const
{
return m_state == TorrentState::Moving;
}
bool TorrentImpl::isUploading() const
{
switch (m_state)