From 31ac6f41697fc53e92fde8bcbc6a1e20b7f9dadb Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Thu, 5 Jun 2008 15:09:56 -0400 Subject: [PATCH] Don't select any rows in the list display * Source/AppController.m: (findWords:): Explicitly deselect all the rows and columns --- Source/AppController.m | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/AppController.m b/Source/AppController.m index 4b9800f..95a30af 100644 --- a/Source/AppController.m +++ b/Source/AppController.m @@ -123,6 +123,7 @@ // resort [wordlistView setSortDescriptors:nil]; [wordlistView setSortDescriptors:[NSArray arrayWithObject:[[NSSortDescriptor alloc] initWithKey:@"length" ascending:NO]]]; + [wordlistView deselectAll:nil]; } @end -- 2.22.5