1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-02-21 13:46:52 +00:00

#5026 Slight decrease in the opacity of the toolbar noise

This commit is contained in:
Mitchell Livingston 2012-08-30 02:48:07 +00:00
parent 656ebb3bc0
commit 9dadb8928f

View file

@ -53,7 +53,7 @@
CIFilter * monochromeFilter = [CIFilter filterWithName: @"CIColorMonochrome"];
[monochromeFilter setDefaults];
[monochromeFilter setValue: fNoiseImage forKey: @"inputImage"];
CIColor * monoFilterColor = [CIColor colorWithRed:1.0 green:1.0 blue:1.0];
CIColor * monoFilterColor = [CIColor colorWithRed: 1.0 green: 1.0 blue: 1.0];
[monochromeFilter setValue: monoFilterColor forKey: @"inputColor"];
fNoiseImage = [[monochromeFilter valueForKey:@"outputImage"] retain];
}
@ -137,7 +137,7 @@
[fNoiseImage drawInRect: rect
fromRect: [self convertRectToBacking: rect]
operation: NSCompositeSourceOver
fraction: 0.15];
fraction: 0.12];
}
@end