mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-14 09:13:08 -07:00
- Made progress on torrent properties (main tab)
This commit is contained in:
parent
707e87f5b8
commit
75e5a7e3d4
6 changed files with 269 additions and 102 deletions
|
@ -789,6 +789,12 @@ void TransferListWidget::loadLastSortedColumn() {
|
|||
}
|
||||
}
|
||||
|
||||
void TransferListWidget::currentChanged(const QModelIndex& current, const QModelIndex&) {
|
||||
int row = proxyModel->mapToSource(current).row();
|
||||
QTorrentHandle h = BTSession->getTorrentHandle(getHashFromRow(row));
|
||||
emit currentTorrentChanged(h);
|
||||
}
|
||||
|
||||
void TransferListWidget::applyFilter(int f) {
|
||||
switch(f) {
|
||||
case DOWNLOADING:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue