diff options
Diffstat (limited to 'Source/SPPreferenceController.m')
-rw-r--r-- | Source/SPPreferenceController.m | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/Source/SPPreferenceController.m b/Source/SPPreferenceController.m index 8a9eb530..7592319a 100644 --- a/Source/SPPreferenceController.m +++ b/Source/SPPreferenceController.m @@ -39,7 +39,6 @@ @synthesize generalPreferencePane; @synthesize tablesPreferencePane; -@synthesize favoritesPreferencePane; @synthesize notificationsPreferencePane; @synthesize editorPreferencePane; @synthesize autoUpdatePreferencePane; @@ -75,7 +74,6 @@ generalPreferencePane, tablesPreferencePane, notificationsPreferencePane, - favoritesPreferencePane, editorPreferencePane, autoUpdatePreferencePane, networkPreferencePane, @@ -125,27 +123,6 @@ [self _resizeWindowForContentView:[tablesPreferencePane preferencePaneView]]; } -/** - * Displays the favorite preferences pane. - */ -- (IBAction)displayFavoritePreferences:(id)sender -{ - // To make the Favorites pane resizable give the window a minimum size and display the resize indicator. - // Notice that we still make all other panes non-resizable by removing the dsiplay of the indicator and - // resetting the minimum size to zero. - [[self window] setMinSize:NSMakeSize(500, 381)]; - [[self window] setShowsResizeIndicator:[favoritesPreferencePane preferencePaneAllowsResizing]]; - - [toolbar setSelectedItemIdentifier:[favoritesPreferencePane preferencePaneIdentifier]]; - - [self _resizeWindowForContentView:[favoritesPreferencePane preferencePaneView]]; - - // Set the default favorite popup back to preference - if ([sender isKindOfClass:[NSMenuItem class]]) { - [generalPreferencePane resetDefaultFavoritePopupSelection]; - } -} - /** * Displays the editor preferences pane. */ @@ -223,14 +200,6 @@ [tablesItem setTarget:self]; [tablesItem setAction:@selector(displayTablePreferences:)]; - // Favorite preferences - favoritesItem = [[NSToolbarItem alloc] initWithItemIdentifier:[favoritesPreferencePane preferencePaneIdentifier]]; - - [favoritesItem setLabel:[favoritesPreferencePane preferencePaneName]]; - [favoritesItem setImage:[favoritesPreferencePane preferencePaneIcon]]; - [favoritesItem setTarget:self]; - [favoritesItem setAction:@selector(displayFavoritePreferences:)]; - // Notification preferences notificationsItem = [[NSToolbarItem alloc] initWithItemIdentifier:[notificationsPreferencePane preferencePaneIdentifier]]; |