diff --git a/Evergreen/MainWindow/Timeline/Cell/TimelineCellLayout.swift b/Evergreen/MainWindow/Timeline/Cell/TimelineCellLayout.swift index 904b29e7d..f08c03bc8 100644 --- a/Evergreen/MainWindow/Timeline/Cell/TimelineCellLayout.swift +++ b/Evergreen/MainWindow/Timeline/Cell/TimelineCellLayout.swift @@ -54,7 +54,9 @@ struct TimelineCellLayout { lastTextRect = textRect } else if numberOfLinesForTitle == 1 { - lastTextRect = summaryRect + if summaryRect.height > 0.1 { + lastTextRect = summaryRect + } } let dateRect = TimelineCellLayout.rectForDate(textBoxRect, lastTextRect, appearance, cellData) let feedNameRect = TimelineCellLayout.rectForFeedName(textBoxRect, dateRect, appearance, cellData)