mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-12-24 07:05:35 +00:00
Fix shouldTruncateForConstrainedSize in ASTextNode2 (#1214)
This commit is contained in:
committed by
Adlai Holler
parent
87615b0ec2
commit
5909e27e37
@@ -1142,7 +1142,7 @@ static NSAttributedString *DefaultTruncationAttributedString()
|
||||
|
||||
- (BOOL)shouldTruncateForConstrainedSize:(ASSizeRange)constrainedSize
|
||||
{
|
||||
return ASLockedSelf([self locked_textLayoutForSize:constrainedSize.max].truncatedLine == nil);
|
||||
return ASLockedSelf([self locked_textLayoutForSize:constrainedSize.max].truncatedLine != nil);
|
||||
}
|
||||
|
||||
- (ASTextLayout *)locked_textLayoutForSize:(CGSize)size
|
||||
|
||||
Reference in New Issue
Block a user