Skip to content
Snippets Groups Projects
Commit fbbf9319 authored by Timur Pocheptsov's avatar Timur Pocheptsov
Browse files

Reduce blur value for a shadow.

git-svn-id: http://root.cern.ch/svn/root/trunk@43492 27541ba8-7e3a-0410-8455-c3a389f83636
parent 2de834f9
No related branches found
No related tags found
No related merge requests found
......@@ -18,7 +18,8 @@
//____________________________________________________________________________________________________
+ (void) setShadowColor : (CGContextRef) ctx
{
CGContextSetShadowWithColor(ctx, CGSizeMake(3.f, 3.f), 8.f, [UIColor blackColor].CGColor);
UIColor *shadowColor = [UIColor colorWithRed : 0.f green : 0.f blue : 0.f alpha : 0.7f];
CGContextSetShadowWithColor(ctx, CGSizeMake(3.f, 3.f), 4.f, shadowColor.CGColor);
}
//____________________________________________________________________________________________________
......
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