From d769cf0af25929aa4b7ce029bdb1e12943110b12 Mon Sep 17 00:00:00 2001 From: Maurice Parker Date: Wed, 17 Apr 2019 07:31:08 -0500 Subject: [PATCH] Fixed a bug with very long feed names. --- iOS/Master/Cell/MasterTableViewCellLayout.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iOS/Master/Cell/MasterTableViewCellLayout.swift b/iOS/Master/Cell/MasterTableViewCellLayout.swift index f55bbb5e3..b2cf543a2 100644 --- a/iOS/Master/Cell/MasterTableViewCellLayout.swift +++ b/iOS/Master/Cell/MasterTableViewCellLayout.swift @@ -57,7 +57,7 @@ struct MasterTableViewCellLayout { self.unreadCountRect = rUnread if rLabel.maxX > bounds.maxX { - rLabel.size.width = bounds.maxX - rLabel.maxX + rLabel.size.width = bounds.maxX - rLabel.minX } self.titleRect = rLabel