mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-12-21 08:09:35 +08:00
Save fastresume when setting torrent speed limits
This commit is contained in:
parent
aafa12eb6e
commit
fbb8f0cbf5
@ -1948,12 +1948,20 @@ void TorrentHandleImpl::setSeedingTimeLimit(int limit)
|
||||
|
||||
void TorrentHandleImpl::setUploadLimit(const int limit)
|
||||
{
|
||||
if (limit == uploadLimit())
|
||||
return;
|
||||
|
||||
m_nativeHandle.set_upload_limit(limit);
|
||||
saveResumeData();
|
||||
}
|
||||
|
||||
void TorrentHandleImpl::setDownloadLimit(const int limit)
|
||||
{
|
||||
if (limit == downloadLimit())
|
||||
return;
|
||||
|
||||
m_nativeHandle.set_download_limit(limit);
|
||||
saveResumeData();
|
||||
}
|
||||
|
||||
void TorrentHandleImpl::setSuperSeeding(const bool enable)
|
||||
|
Loading…
Reference in New Issue
Block a user