diff options
author | rowanbeentje <rowan@beent.je> | 2010-09-26 20:26:39 +0000 |
---|---|---|
committer | rowanbeentje <rowan@beent.je> | 2010-09-26 20:26:39 +0000 |
commit | 2281746fdc1f1a2ff93fc28fc0182614445d5938 (patch) | |
tree | 0c141ec521a84d0b436a4ee431c085c9216d8f0a /Source/SPConnectionController.m | |
parent | 15a9a678170c20671e86c5fa18393e1c5bddaff4 (diff) | |
download | sequelpro-2281746fdc1f1a2ff93fc28fc0182614445d5938.tar.gz sequelpro-2281746fdc1f1a2ff93fc28fc0182614445d5938.tar.bz2 sequelpro-2281746fdc1f1a2ff93fc28fc0182614445d5938.zip |
Tweak favourites sorting from r2696, fixing exceptions when no sort type is selected
Diffstat (limited to 'Source/SPConnectionController.m')
-rw-r--r-- | Source/SPConnectionController.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/SPConnectionController.m b/Source/SPConnectionController.m index 6e760a9d..baa09262 100644 --- a/Source/SPConnectionController.m +++ b/Source/SPConnectionController.m @@ -133,8 +133,8 @@ [favoritesTable registerForDraggedTypes:[NSArray arrayWithObject:favoritesPBoardType]]; [favoritesTable setDraggingSourceOperationMask:NSDragOperationMove forLocal:YES]; - // Sort the favourites to match prefs and select the appropriate row - [self _sortFavorites]; + // Sort the favourites to match prefs and select the appropriate row - if a valid sort option is selected + if (currentSortItem > -1) [self _sortFavorites]; NSInteger tableRow = ([prefs integerForKey:[prefs boolForKey:SPSelectLastFavoriteUsed] ? SPLastFavoriteIndex : SPDefaultFavorite] + 1); |