mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-20 05:13:30 -07:00
Allow to change the save path of torrents after addition
This commit is contained in:
parent
9618056b4e
commit
b0a0abd764
6 changed files with 105 additions and 215 deletions
|
@ -393,6 +393,11 @@ void QTorrentHandle::force_recheck() const {
|
|||
h.force_recheck();
|
||||
}
|
||||
|
||||
void QTorrentHandle::move_storage(QString new_path) const {
|
||||
Q_ASSERT(h.is_valid());
|
||||
h.move_storage(new_path.toUtf8().data());
|
||||
}
|
||||
|
||||
//
|
||||
// Operators
|
||||
//
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue