From 4a2818f1848be11f86811c9129ac7219978cb37a Mon Sep 17 00:00:00 2001 From: Alexander Borsuk Date: Sat, 18 Feb 2023 12:07:05 +0100 Subject: [PATCH] [ios] Tint Route To button with a blue color Signed-off-by: Alexander Borsuk --- .../UI/PlacePage/PlacePageLayout/ActionBar/MWMActionBarButton.m | 1 + 1 file changed, 1 insertion(+) diff --git a/iphone/Maps/UI/PlacePage/PlacePageLayout/ActionBar/MWMActionBarButton.m b/iphone/Maps/UI/PlacePage/PlacePageLayout/ActionBar/MWMActionBarButton.m index 1e625b0458..7070ed5e5d 100644 --- a/iphone/Maps/UI/PlacePage/PlacePageLayout/ActionBar/MWMActionBarButton.m +++ b/iphone/Maps/UI/PlacePage/PlacePageLayout/ActionBar/MWMActionBarButton.m @@ -106,6 +106,7 @@ NSString *titleForButton(MWMActionBarButtonType type, BOOL isSelected) { break; case MWMActionBarButtonTypeRouteTo: [self.button setImage:[UIImage imageNamed:@"ic_route_to"] forState:UIControlStateNormal]; + self.button.imageView.tintColor = [UIColor linkBlue]; break; case MWMActionBarButtonTypeShare: [self.button setImage:[UIImage imageNamed:@"ic_menu_share"] forState:UIControlStateNormal];