when sorting by queue order, dragging on group header will place the torrent at the bottom

This commit is contained in:
Mitchell Livingston 2008-05-12 22:08:06 +00:00
parent 320f43211f
commit add14825a7
1 changed files with 3 additions and 1 deletions

View File

@ -2620,7 +2620,9 @@ void sleepCallBack(void * controller, io_service_t y, natural_t messageType, voi
}
else
{
if (![[fDefaults stringForKey: @"Sort"] isEqualToString: SORT_ORDER])
if ([[fDefaults stringForKey: @"Sort"] isEqualToString: SORT_ORDER])
index = [[item objectForKey: @"Torrents"] count];
else
index = NSOutlineViewDropOnItemIndex;
}
}