From 4e40a35f63a4d773f457e1480047d1737b2cd1db Mon Sep 17 00:00:00 2001 From: Mitchell Livingston Date: Mon, 18 Dec 2006 18:33:32 +0000 Subject: [PATCH] dragging a url now hilights the whole table --- macosx/Controller.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/macosx/Controller.m b/macosx/Controller.m index b64bafe20..275265709 100644 --- a/macosx/Controller.m +++ b/macosx/Controller.m @@ -1834,7 +1834,7 @@ static void sleepCallBack(void * controller, io_service_t y, natural_t messageTy } else if ([[pasteboard types] containsObject: NSURLPboardType]) { - [fTableView setDropRow: row dropOperation: NSTableViewDropAbove]; + [fTableView setDropRow: -1 dropOperation: NSTableViewDropOn]; return NSDragOperationGeneric; } else if ([[pasteboard types] containsObject: TORRENT_TABLE_VIEW_DATA_TYPE])