Don't select any rows in the list display
authorRobert Sesek <rsesek@bluestatic.org>
Thu, 5 Jun 2008 19:09:56 +0000 (15:09 -0400)
committerRobert Sesek <rsesek@bluestatic.org>
Thu, 5 Jun 2008 19:09:56 +0000 (15:09 -0400)
* Source/AppController.m:
(findWords:): Explicitly deselect all the rows and columns

Source/AppController.m

index 4b9800ffd25cc7f61be9267d2b1a4c0a3954b2ac..95a30af8b97d1be2ece3811951117fdcd1037856 100644 (file)
        // resort
        [wordlistView setSortDescriptors:nil];
        [wordlistView setSortDescriptors:[NSArray arrayWithObject:[[NSSortDescriptor alloc] initWithKey:@"length" ascending:NO]]];
+       [wordlistView deselectAll:nil]; 
 }
 
 @end