Fix ipad texts size in Wizard

This commit is contained in:
Guillaume BIENKOWSKI 2014-02-25 12:06:37 +01:00
parent bc25d6cd26
commit 88d0a967f8

View file

@ -84,6 +84,10 @@
UITextField *label = (UITextField*)view;
UIFont *font = [label font];
[label setFont:[UIFont fontWithName:font.fontName size:font.pointSize * mult]];
} else if([view isKindOfClass:[UIButton class]]) {
UIButton* button = (UIButton*)view;
UIFont* font = button.titleLabel.font;
[button.titleLabel setFont:[UIFont fontWithName:font.fontName size:font.pointSize*mult]];
} else {
for(UIView *subView in [view subviews]) {
[LinphoneUtils adjustFontSize:subView mult:mult];