forked from organicmaps/organicmaps
[search] Set arrow color to a8a8a8.
This commit is contained in:
parent
2e1c02e9cd
commit
be9041153c
1 changed files with 3 additions and 1 deletions
|
@ -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];
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue