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:
parent
656ebb3bc0
commit
9dadb8928f
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue