forked from organicmaps/organicmaps
[ios] Fixed radio buttons coloring.
This commit is contained in:
parent
8a1f25a0c8
commit
6987ba2347
1 changed files with 3 additions and 1 deletions
|
@ -73,8 +73,10 @@ using namespace osmoh;
|
|||
for (UIImageView * image in self.images)
|
||||
{
|
||||
if (image.tag == tag)
|
||||
{
|
||||
image.image = [UIImage imageNamed:selected ? @"radioBtnOn" : @"radioBtnOff"];
|
||||
image.mwm_coloring = MWMImageColoringBlue;
|
||||
image.mwm_coloring = selected ? MWMImageColoringBlue : MWMImageColoringGray;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue