[search] Set arrow color to a8a8a8.

This commit is contained in:
vng 2012-02-24 20:39:43 +03:00 committed by Alex Zolotarev
parent 2e1c02e9cd
commit be9041153c

View file

@ -57,7 +57,9 @@
matrix = CGAffineTransformTranslate(matrix, -w2, -w2);
[aPath applyTransform:matrix];
[[UIColor blueColor] setFill];
// Set color: a8a8a8.
float const c = 168.0/255.0;
[[UIColor colorWithRed:c green:c blue:c alpha:1.0] setFill];
[aPath fill];
}
}