mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-05-06 21:33:08 +00:00
Fix ipad texts size in Wizard
This commit is contained in:
parent
bc25d6cd26
commit
88d0a967f8
1 changed files with 4 additions and 0 deletions
|
|
@ -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];
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue