Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

B70 fixes #1100

Merged
merged 2 commits into from Sep 7, 2012
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 6 additions & 4 deletions Quicksilver/Code-App/QSMainPreferencePanes.m
Expand Up @@ -227,11 +227,13 @@ - (IBAction)resetColors:(id)sender {
#endif
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
NSArray *colourDefaults = [NSArray arrayWithObjects: kQSAppearance1B, kQSAppearance1A, kQSAppearance1T, kQSAppearance2B, kQSAppearance2A, kQSAppearance2T, kQSAppearance3B, kQSAppearance3A, kQSAppearance3T, nil];
@synchronized(defaults) {
for (NSString *eachDefault in colourDefaults) {
[defaults willChangeValueForKey:eachDefault];
[defaults removeObjectForKey:eachDefault];
[defaults didChangeValueForKey:eachDefault];
}
[defaults willChangeValueForKey:eachDefault];
[defaults removeObjectForKey:eachDefault];
[defaults didChangeValueForKey:eachDefault];
}
}
[defaults synchronize];
}

Expand Down
2 changes: 0 additions & 2 deletions Quicksilver/Code-QuickStepEffects/QSFadingView.m
Expand Up @@ -9,7 +9,6 @@
#import "QSFadingView.h"

@interface NSView (QSAppKitPrivate)
- (void)_setDrawsOwnDescendants:(BOOL)flag;
- (void)_recursiveDisplayAllDirtyWithLockFocus:(BOOL)lock visRect:(NSRect)rect;
@end

Expand All @@ -19,7 +18,6 @@ - (id)initWithFrame:(NSRect)frame {
self = [super initWithFrame:frame];
if (self) {
opacity = 1.0;
[self _setDrawsOwnDescendants:YES];
}
return self;
}
Expand Down