From abfba8d070eca98f602a25722b27eff44a613a40 Mon Sep 17 00:00:00 2001 From: rowanbeentje Date: Sat, 5 Jun 2010 23:51:54 +0000 Subject: - Tweak initial window load to select the correct favourite, also applying focus correctly --- Source/SPConnectionController.m | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Source/SPConnectionController.m') diff --git a/Source/SPConnectionController.m b/Source/SPConnectionController.m index 5ea3aa77..ad2bdf62 100644 --- a/Source/SPConnectionController.m +++ b/Source/SPConnectionController.m @@ -110,8 +110,9 @@ [favoritesTable setDoubleAction:@selector(initiateConnection:)]; [favoritesTable registerForDraggedTypes:[NSArray arrayWithObject:favoritesPBoardType]]; [favoritesTable setDraggingSourceOperationMask:NSDragOperationMove forLocal:YES]; - // Set the focus to the favorites table and select the appropriate row - [[tableDocument parentWindow] setInitialFirstResponder:favoritesTable]; + + // Sort the favourites to match prefs and select the appropriate row + [self _sortFavorites]; NSInteger tableRow; if ([prefs boolForKey:SPSelectLastFavoriteUsed] == YES) { tableRow = [prefs integerForKey:SPLastFavoriteIndex] + 1; @@ -128,7 +129,6 @@ [self resizeTabViewToConnectionType:SPTCPIPConnection animating:NO]; } } - [self _sortFavorites]; return self; } -- cgit v1.2.3