From ea1f9e0b57522a165026cf854a26549dcfa62fa5 Mon Sep 17 00:00:00 2001 From: Alex Grebenyuk Date: Tue, 25 Nov 2025 07:38:59 -0500 Subject: [PATCH] Increase number of lines for post tiles --- RELEASE-NOTES.txt | 2 ++ WordPress/Classes/ViewRelated/Reader/Cards/ReaderPostCell.swift | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/RELEASE-NOTES.txt b/RELEASE-NOTES.txt index 3d65b0601ade..33271ccbe729 100644 --- a/RELEASE-NOTES.txt +++ b/RELEASE-NOTES.txt @@ -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] @@ -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 ----- diff --git a/WordPress/Classes/ViewRelated/Reader/Cards/ReaderPostCell.swift b/WordPress/Classes/ViewRelated/Reader/Cards/ReaderPostCell.swift index 8f5679ef0028..9524cc8e981a 100644 --- a/WordPress/Classes/ViewRelated/Reader/Cards/ReaderPostCell.swift +++ b/WordPress/Classes/ViewRelated/Reader/Cards/ReaderPostCell.swift @@ -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