mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-12-23 22:55:00 +00:00
Add a space between the ? and : in ternarys
This commit is contained in:
@@ -631,7 +631,7 @@ static NSArray *DefaultLinkAttributeNames = @[ NSLinkAttributeName ];
|
||||
|
||||
CABasicAnimation *fadeOut = [CABasicAnimation animationWithKeyPath:@"opacity"];
|
||||
fadeOut.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut];
|
||||
fadeOut.fromValue = possibleFadeIn.toValue ?: @(((CALayer *)weakHighlightLayer.presentationLayer).opacity);
|
||||
fadeOut.fromValue = possibleFadeIn.toValue ? : @(((CALayer *)weakHighlightLayer.presentationLayer).opacity);
|
||||
fadeOut.toValue = @0.0;
|
||||
fadeOut.fillMode = kCAFillModeBoth;
|
||||
fadeOut.duration = ASTextNodeHighlightFadeOutDuration;
|
||||
|
||||
Reference in New Issue
Block a user