mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-18 06:28:03 -06:00
- Make sure a torrent is always selected when we switch filters
This commit is contained in:
@@ -828,4 +828,7 @@ void TransferListWidget::applyFilter(int f) {
|
|||||||
default:
|
default:
|
||||||
proxyModel->setFilterRegExp(QRegExp());
|
proxyModel->setFilterRegExp(QRegExp());
|
||||||
}
|
}
|
||||||
|
// Select first item if nothing is selected
|
||||||
|
if(selectionModel()->selectedRows(0).empty() && proxyModel->rowCount() > 0)
|
||||||
|
selectionModel()->setCurrentIndex(proxyModel->index(0, NAME), QItemSelectionModel::SelectCurrent|QItemSelectionModel::Rows);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user