Skip to content

Commit

Permalink
#FIXME: Force-disable superfluous effects on startup
Browse files Browse the repository at this point in the history
  • Loading branch information
n8henrie committed Dec 9, 2023
1 parent 5a5bce4 commit a6d6e66
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Quicksilver/Code-App/QSApp.m
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,13 @@ +(void)load {
setenv("QSDebugCatalog", "1", YES);
}
#endif
// #TODO @n8henrie: Hopefully temporary workaround for Sonoma
// https://github.com/quicksilver/Quicksilver/issues/2962
if (@available(macOS 14, *)) {
NSLog(@"Force-disabling superfluous effects at startup");
[[NSUserDefaults standardUserDefaults] setBool:false forKey:kUseEffects];
}

}

+ (void)initialize {
Expand Down

0 comments on commit a6d6e66

Please sign in to comment.