From a2fb0c96bec4a9909cb1150a8da18a774760141c Mon Sep 17 00:00:00 2001 From: Vladimir Enchev Date: Fri, 11 Dec 2015 10:27:51 +0200 Subject: [PATCH] default font size fixed --- ui/tab-view/tab-view.ios.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/tab-view/tab-view.ios.ts b/ui/tab-view/tab-view.ios.ts index fd75b46b2..bf97f79cf 100644 --- a/ui/tab-view/tab-view.ios.ts +++ b/ui/tab-view/tab-view.ios.ts @@ -354,7 +354,7 @@ function getTitleAttributesForStates(tabView: TabView): { normalState: any, sele selectedState[UITextAttributeTextColor] = tabView.ios.tabBar.tintColor; } - var defaultFont = UIFont.systemFontOfSize(UIFont.labelFontSize()); + var defaultFont = UIFont.systemFontOfSize(10); var font = (tabView.style)._fontInternal.getUIFont(defaultFont); normalState[NSFontAttributeName] = font; selectedState[NSFontAttributeName] = font;