diff options
author | rowanbeentje <rowan@beent.je> | 2012-05-20 13:02:39 +0000 |
---|---|---|
committer | rowanbeentje <rowan@beent.je> | 2012-05-20 13:02:39 +0000 |
commit | b225cf4913e4fe20dfe57922fcbb8caa78878115 (patch) | |
tree | 7e7076bcae22e3dc1fd2880791f2b1566281f939 /Source/SPDatabaseDocument.m | |
parent | 1975d6df453a7b82346571ac8d45613c1bffce15 (diff) | |
download | sequelpro-b225cf4913e4fe20dfe57922fcbb8caa78878115.tar.gz sequelpro-b225cf4913e4fe20dfe57922fcbb8caa78878115.tar.bz2 sequelpro-b225cf4913e4fe20dfe57922fcbb8caa78878115.zip |
Improvements to connection view outline view:
- Prevent groups from being dragged into themselves (or child nodes) to prevent data loss
- Improve selection handling when manually reordering nodes
- Don't allow drags of the "Favorites" title at the top of the view to prevent exceptions
- Prevent the "Favorites" title from being collapsed to prevent confusion on 10.7+
- Improve group tooltips to reflect contained favourites and groups
- Improve menu validation checks
Diffstat (limited to 'Source/SPDatabaseDocument.m')
-rw-r--r-- | Source/SPDatabaseDocument.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/SPDatabaseDocument.m b/Source/SPDatabaseDocument.m index f8f1585b..90f9985a 100644 --- a/Source/SPDatabaseDocument.m +++ b/Source/SPDatabaseDocument.m @@ -3484,7 +3484,7 @@ static NSString *SPRenameDatabaseAction = @"SPRenameDatabase"; // If validation for the sort favorites tableview items reaches here then the preferences window isn't // open return NO. - if (([menuItem action] == @selector(sortFavorites:)) || ([menuItem action] == @selector(reverseFavoritesSortOrder:))) { + if (([menuItem action] == @selector(sortFavorites:)) || ([menuItem action] == @selector(reverseSortFavorites:))) { return NO; } |