mirror of
https://github.com/transmission/transmission
synced 2024-12-27 18:18:10 +00:00
when sorting by queue order, dragging on group header will place the torrent at the bottom
This commit is contained in:
parent
320f43211f
commit
add14825a7
1 changed files with 3 additions and 1 deletions
|
@ -2620,7 +2620,9 @@ void sleepCallBack(void * controller, io_service_t y, natural_t messageType, voi
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (![[fDefaults stringForKey: @"Sort"] isEqualToString: SORT_ORDER])
|
if ([[fDefaults stringForKey: @"Sort"] isEqualToString: SORT_ORDER])
|
||||||
|
index = [[item objectForKey: @"Torrents"] count];
|
||||||
|
else
|
||||||
index = NSOutlineViewDropOnItemIndex;
|
index = NSOutlineViewDropOnItemIndex;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue