From 07761591c9c63b4a7da2056db775c3c84845c8ff Mon Sep 17 00:00:00 2001 From: Mitchell Livingston Date: Wed, 23 Jan 2008 02:56:31 +0000 Subject: [PATCH] only allow group dividers on 10.5 or higher --- macosx/Controller.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/macosx/Controller.m b/macosx/Controller.m index 513084d30..be5d04a0b 100644 --- a/macosx/Controller.m +++ b/macosx/Controller.m @@ -1684,7 +1684,7 @@ void sleepCallBack(void * controller, io_service_t y, natural_t messageType, voi //add group divider if necessary int total = [fDisplayedTorrents count]; - if (group && total > 0) + if (group && total > 0 && [NSApp isOnLeopardOrBetter]) { int i, groupValue = [[fDisplayedTorrents objectAtIndex: total-1] groupValue], newGroupValue; for (i = total-1; i >= 0; i--)