From 22fdecbe56fc1e199b1e21199513973f5ec5483e Mon Sep 17 00:00:00 2001 From: VladiMihaylenko Date: Tue, 12 Mar 2019 11:45:51 +0300 Subject: [PATCH] [ios] Added missing regular20 font. --- iphone/Maps/Categories/UIFont+MapsMeFonts.h | 1 + iphone/Maps/Categories/UIFont+MapsMeFonts.mm | 1 + 2 files changed, 2 insertions(+) diff --git a/iphone/Maps/Categories/UIFont+MapsMeFonts.h b/iphone/Maps/Categories/UIFont+MapsMeFonts.h index 60c5979783..42173ed6ae 100644 --- a/iphone/Maps/Categories/UIFont+MapsMeFonts.h +++ b/iphone/Maps/Categories/UIFont+MapsMeFonts.h @@ -10,6 +10,7 @@ + (UIFont *)regular16; + (UIFont *)regular17; + (UIFont *)regular18; ++ (UIFont *)regular20; + (UIFont *)regular24; + (UIFont *)regular32; + (UIFont *)regular52; diff --git a/iphone/Maps/Categories/UIFont+MapsMeFonts.mm b/iphone/Maps/Categories/UIFont+MapsMeFonts.mm index fe8925f2db..6ab5201dec 100644 --- a/iphone/Maps/Categories/UIFont+MapsMeFonts.mm +++ b/iphone/Maps/Categories/UIFont+MapsMeFonts.mm @@ -15,6 +15,7 @@ NSString * const kLightFontName = @"HelveticaNeue-Light"; + (UIFont *)regular16 { return [UIFont systemFontOfSize:16]; } + (UIFont *)regular17 { return [UIFont systemFontOfSize:17]; } + (UIFont *)regular18 { return [UIFont systemFontOfSize:18]; } ++ (UIFont *)regular20 { return [UIFont systemFontOfSize:20]; } + (UIFont *)regular24 { return [UIFont systemFontOfSize:24]; } + (UIFont *)regular32 { return [UIFont systemFontOfSize:32]; } + (UIFont *)regular52 { return [UIFont systemFontOfSize:52]; }