mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2026-01-06 23:52:31 -06:00
BUGFIX: Priority actions are only effective if the transfer list tab is displayed
This commit is contained in:
@@ -4,6 +4,7 @@
|
|||||||
- BUGFIX: Remember previously selected paths in torrent creation dialog
|
- BUGFIX: Remember previously selected paths in torrent creation dialog
|
||||||
- BUGFIX: Added missing right-click menu icon in Web UI
|
- BUGFIX: Added missing right-click menu icon in Web UI
|
||||||
- BUGFIX: Fix speed limit sliders initialization in Web UI
|
- BUGFIX: Fix speed limit sliders initialization in Web UI
|
||||||
|
- BUGFIX: Priority actions are only effective if the transfer list tab is displayed
|
||||||
|
|
||||||
* Tue Jul 27 2010 - Christophe Dumez <chris@qbittorrent.org> - v2.3.0
|
* Tue Jul 27 2010 - Christophe Dumez <chris@qbittorrent.org> - v2.3.0
|
||||||
- FEATURE: Simplified torrent root folder renaming/truncating (< v2.3.0 is no longer forward compatible)
|
- FEATURE: Simplified torrent root folder renaming/truncating (< v2.3.0 is no longer forward compatible)
|
||||||
|
|||||||
@@ -718,8 +718,8 @@ void TransferListWidget::deleteSelectedTorrents() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// FIXME: Should work only if the tab is displayed
|
|
||||||
void TransferListWidget::increasePrioSelectedTorrents() {
|
void TransferListWidget::increasePrioSelectedTorrents() {
|
||||||
|
if(main_window->getCurrentTabWidget() != this) return;
|
||||||
const QStringList hashes = getSelectedTorrentsHashes();
|
const QStringList hashes = getSelectedTorrentsHashes();
|
||||||
foreach(const QString &hash, hashes) {
|
foreach(const QString &hash, hashes) {
|
||||||
QTorrentHandle h = BTSession->getTorrentHandle(hash);
|
QTorrentHandle h = BTSession->getTorrentHandle(hash);
|
||||||
@@ -730,8 +730,8 @@ void TransferListWidget::increasePrioSelectedTorrents() {
|
|||||||
refreshList();
|
refreshList();
|
||||||
}
|
}
|
||||||
|
|
||||||
// FIXME: Should work only if the tab is displayed
|
|
||||||
void TransferListWidget::decreasePrioSelectedTorrents() {
|
void TransferListWidget::decreasePrioSelectedTorrents() {
|
||||||
|
if(main_window->getCurrentTabWidget() != this) return;
|
||||||
const QStringList hashes = getSelectedTorrentsHashes();
|
const QStringList hashes = getSelectedTorrentsHashes();
|
||||||
foreach(const QString &hash, hashes) {
|
foreach(const QString &hash, hashes) {
|
||||||
QTorrentHandle h = BTSession->getTorrentHandle(hash);
|
QTorrentHandle h = BTSession->getTorrentHandle(hash);
|
||||||
|
|||||||
Reference in New Issue
Block a user