mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-02-04 02:45:44 +00:00
parent
1729b9f29c
commit
03c774eae7
@ -690,8 +690,16 @@ void TransferListWidget::setSelectedFirstLastPiecePrio(const bool enabled) const
|
|||||||
torrent->setFirstLastPiecePriority(enabled);
|
torrent->setFirstLastPiecePriority(enabled);
|
||||||
}
|
}
|
||||||
|
|
||||||
void TransferListWidget::setSelectedAutoTMMEnabled(const bool enabled) const
|
void TransferListWidget::setSelectedAutoTMMEnabled(const bool enabled)
|
||||||
{
|
{
|
||||||
|
if (enabled)
|
||||||
|
{
|
||||||
|
const QMessageBox::StandardButton btn = QMessageBox::question(this, tr("Enable automatic torrent management")
|
||||||
|
, tr("Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated.")
|
||||||
|
, (QMessageBox::Yes | QMessageBox::No), QMessageBox::Yes);
|
||||||
|
if (btn != QMessageBox::Yes) return;
|
||||||
|
}
|
||||||
|
|
||||||
for (BitTorrent::Torrent *const torrent : asConst(getSelectedTorrents()))
|
for (BitTorrent::Torrent *const torrent : asConst(getSelectedTorrents()))
|
||||||
torrent->setAutoTMMEnabled(enabled);
|
torrent->setAutoTMMEnabled(enabled);
|
||||||
}
|
}
|
||||||
|
@ -111,7 +111,7 @@ private slots:
|
|||||||
void setSelectedTorrentsSuperSeeding(bool enabled) const;
|
void setSelectedTorrentsSuperSeeding(bool enabled) const;
|
||||||
void setSelectedTorrentsSequentialDownload(bool enabled) const;
|
void setSelectedTorrentsSequentialDownload(bool enabled) const;
|
||||||
void setSelectedFirstLastPiecePrio(bool enabled) const;
|
void setSelectedFirstLastPiecePrio(bool enabled) const;
|
||||||
void setSelectedAutoTMMEnabled(bool enabled) const;
|
void setSelectedAutoTMMEnabled(bool enabled);
|
||||||
void askNewCategoryForSelection();
|
void askNewCategoryForSelection();
|
||||||
void saveSettings();
|
void saveSettings();
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user