mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
fix(mac): utils for mac catalyst (#10157)
This commit is contained in:
@@ -49,8 +49,11 @@
|
|||||||
|
|
||||||
BOOL actualItalic = result.fontDescriptor.symbolicTraits & UIFontDescriptorTraitItalic;
|
BOOL actualItalic = result.fontDescriptor.symbolicTraits & UIFontDescriptorTraitItalic;
|
||||||
if ([[font valueForKey:@"isItalic"] boolValue] && !actualItalic) {
|
if ([[font valueForKey:@"isItalic"] boolValue] && !actualItalic) {
|
||||||
|
#if TARGET_OS_MACCATALYST
|
||||||
|
#else
|
||||||
// The font we got is not actually italic so emulate that with a matrix
|
// The font we got is not actually italic so emulate that with a matrix
|
||||||
result = [UIFont fontWithDescriptor:[descriptor fontDescriptorWithMatrix:CGAffineTransformMake(1, 0, 0.2, 1, 0, 0)] size:size];
|
result = [UIFont fontWithDescriptor:[descriptor fontDescriptorWithMatrix:CGAffineTransformMake(1, 0, 0.2, 1, 0, 0)] size:size];
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check if the resolved font has the correct font-family
|
// Check if the resolved font has the correct font-family
|
||||||
|
|||||||
Reference in New Issue
Block a user