mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-11 07:46:17 -07:00
- Allow the user to display torrent properties in finished list
This commit is contained in:
parent
5c53c457e5
commit
cd70dcc3ba
4 changed files with 35 additions and 3 deletions
|
@ -1215,6 +1215,11 @@ void GUI::addUnauthenticatedTracker(QPair<torrent_handle,std::string> tracker){
|
|||
|
||||
// display properties of selected items
|
||||
void GUI::propertiesSelection(){
|
||||
if(tabs->currentIndex() > 1) return;
|
||||
if(tabs->currentIndex() == 1){
|
||||
finishedTorrentTab->propertiesSelection();
|
||||
return;
|
||||
}
|
||||
QModelIndexList selectedIndexes = downloadList->selectionModel()->selectedIndexes();
|
||||
QModelIndex index;
|
||||
foreach(index, selectedIndexes){
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue