Skip to content
Snippets Groups Projects
Commit f17dbd57 authored by Eris's avatar Eris
Browse files

fix Exposé display when blur effect is enabled

Passing kCGWindowFilterDock (0x3001) to CGSAddWindowFilter worked with my
Blurminal fork and it works here. It sounds a little sketch, but no more
sketch than using any other undocumented goodness.
parent 362d6e42
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -103,7 +103,7 @@
NSDictionary *optionsDict = [NSDictionary dictionaryWithObject:[NSNumber numberWithFloat:2.0] forKey:@"inputRadius"];
CGSSetCIFilterValuesFromDictionary(con, blurFilter, (CFDictionaryRef)optionsDict);
 
CGSAddWindowFilter(con, [self windowNumber], blurFilter, kCGWindowFilterUnderlay);
CGSAddWindowFilter(con, [self windowNumber], blurFilter, kCGWindowFilterDock);
#endif
}
 
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment