mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-20 23:47:23 -06:00
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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user