mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-15 01:33:07 -07:00
- fixed sorting in finished list
This commit is contained in:
parent
95ecaec11e
commit
321b76a72a
1 changed files with 1 additions and 1 deletions
|
@ -595,7 +595,7 @@ QAction* FinishedTorrents::getActionHoSCol(int index) {
|
|||
void FinishedTorrents::toggleFinishedListSortOrder(int index) {
|
||||
Qt::SortOrder sortOrder = Qt::AscendingOrder;
|
||||
if(finishedList->header()->sortIndicatorSection() == index){
|
||||
sortOrder = (Qt::SortOrder)!(bool)finishedList->header()->sortIndicatorSection();
|
||||
sortOrder = (Qt::SortOrder)!(bool)finishedList->header()->sortIndicatorOrder();
|
||||
}
|
||||
switch(index) {
|
||||
case F_SIZE:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue