Skip to content
This repository has been archived by the owner on Jun 20, 2023. It is now read-only.

Fix/4686 compressed text #1835

Merged
merged 2 commits into from Jan 21, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 6 additions & 6 deletions src/xcode/ENA/ENA.xcodeproj/project.pbxproj
Expand Up @@ -2440,16 +2440,16 @@
71FE1C83247AC33D00851FEB /* ExposureSubmission */ = {
isa = PBXGroup;
children = (
71FE1C84247AC33D00851FEB /* ExposureSubmissionTestResultHeaderView.swift */,
711EFCC824935C79005FEF21 /* ExposureSubmissionTestResultHeaderView.xib */,
35D16DDC2567FB980069AD1B /* DynamicLegalCell.swift */,
35D16DDD2567FB980069AD1B /* DynamicLegalCell.xib */,
50C5C1B9258920AD00C4817A /* DynamicLegalExtendedCell.swift */,
50C5C1B425891CC800C4817A /* DynamicLegalExtendedCell.xib */,
710021DF248EAF9A001F0B63 /* ExposureSubmissionImageCardCell.swift */,
710021DD248EAF16001F0B63 /* ExposureSubmissionImageCardCell.xib */,
710224F32490E7A3000C5DEF /* ExposureSubmissionStepCell.swift */,
710224ED2490E2FC000C5DEF /* ExposureSubmissionStepCell.xib */,
35D16DDC2567FB980069AD1B /* DynamicLegalCell.swift */,
50C5C1B9258920AD00C4817A /* DynamicLegalExtendedCell.swift */,
35D16DDD2567FB980069AD1B /* DynamicLegalCell.xib */,
50C5C1B425891CC800C4817A /* DynamicLegalExtendedCell.xib */,
71FE1C84247AC33D00851FEB /* ExposureSubmissionTestResultHeaderView.swift */,
711EFCC824935C79005FEF21 /* ExposureSubmissionTestResultHeaderView.xib */,
351E630A256C5B9C00D89B29 /* LabeledCountriesCell.swift */,
351E630B256C5B9C00D89B29 /* LabeledCountriesCell.xib */,
);
Expand Down
Expand Up @@ -63,6 +63,7 @@ class DynamicLegalExtendedCell: UITableViewCell {
label.numberOfLines = 0
label.lineBreakMode = .byWordWrapping
label.attributedText = string
label.setContentCompressionResistancePriority(.required, for: .vertical)
contentStackView1.addArrangedSubview(label)
}

Expand All @@ -72,6 +73,7 @@ class DynamicLegalExtendedCell: UITableViewCell {
label.numberOfLines = 0
label.lineBreakMode = .byWordWrapping
label.attributedText = string
label.setContentCompressionResistancePriority(.required, for: .vertical)
contentStackView2.addArrangedSubview(label)
}

Expand Down