Changeset 61
- Timestamp:
- 06/27/07 19:59:29 (5 years ago)
- Files:
-
- 1 modified
-
trunk/SapphireSettings.m (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/SapphireSettings.m
r59 r61 26 26 #define HIDE_UNWATCHED_KEY @"HideUnwatched" 27 27 #define HIDE_SPOILERS_KEY @"HideSpoilers" 28 #define HIDE_UI_QUIT_KEY @"HideUIQuit" 28 29 #define DISABLE_ANON_KEY @"DisableAnonymousReporting" 30 29 31 30 32 + (SapphireSettings *)sharedSettings … … 51 53 @" Hide \"Unwatched Shows\"", 52 54 @" Hide Show Spoilers", 55 @" Hide UI Quit", 53 56 @" Disable Anonymous Reporting", nil]; 54 keys = [[NSArray alloc] initWithObjects:@"", HIDE_FAVORITE_KEY, HIDE_TOP_SHOWS_KEY, HIDE_UNWATCHED_KEY, HIDE_SPOILERS_KEY, DISABLE_ANON_KEY, nil];57 keys = [[NSArray alloc] initWithObjects:@"", HIDE_FAVORITE_KEY, HIDE_TOP_SHOWS_KEY, HIDE_UNWATCHED_KEY, HIDE_UI_QUIT_KEY,HIDE_SPOILERS_KEY, DISABLE_ANON_KEY, nil]; 55 58 path = [dictionaryPath retain]; 56 59 options = [[NSDictionary dictionaryWithContentsOfFile:dictionaryPath] mutableCopy]; … … 198 201 if(row==3)[result setRightIcon:[[SapphireTheme sharedTheme] blueGemForScene:[self scene]]]; 199 202 if(row==4)[result setRightIcon:[[SapphireTheme sharedTheme] redGemForScene:[self scene]]]; 203 if(row==5)[result setRightIcon:[[SapphireTheme sharedTheme] coneGemForScene:[self scene]]]; 200 204 201 205
