forked from organicmaps/organicmaps
[iOS] remove extra space in bookmark section in PP
This commit is contained in:
parent
95e3e1539b
commit
151a9b28d6
1 changed files with 10 additions and 0 deletions
|
@ -31,6 +31,11 @@ final class ExpandableLabel: UIView {
|
|||
containerText = text
|
||||
textView.text = text
|
||||
expandLabel.isHidden = true
|
||||
if let text = text {
|
||||
textView.isHidden = text.count == 0
|
||||
} else {
|
||||
textView.isHidden = true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -39,6 +44,11 @@ final class ExpandableLabel: UIView {
|
|||
containerText = attributedText?.string
|
||||
textView.attributedText = attributedText
|
||||
expandLabel.isHidden = true
|
||||
if let attributedText = attributedText {
|
||||
textView.isHidden = attributedText.length == 0
|
||||
} else {
|
||||
textView.isHidden = true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue