Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions RELEASE-NOTES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
-----
* [*] Fix horizontal insets in Reader article view [#25010]


26.5
-----
* [*] Add "Status" field to the "Post Settings" screen to make it easier to move posts from one state to another [#24939]
Expand All @@ -16,6 +17,7 @@
* [*] Add "Taxonomies" to Site Settings [#24955]
* [*] Update "Categories" picker to indicate multiple selection [#24952]
* [*] Fix overly long related post titles in Reader [#25011]
* [*] Increase number of lines for post tiles in Reader to three [#25019]

26.4
-----
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ private final class ReaderPostCellView: UIView {
}

private func configureLayout(isCompact: Bool) {
titleLabel.numberOfLines = 2
titleLabel.numberOfLines = 3
detailsLabel.numberOfLines = isCompact ? 3 : 5

postPreview.axis = isCompact ? .vertical : .horizontal
Expand Down