From 2801f65e6752f3e678c8c7dd0bca688edbc9bbfa Mon Sep 17 00:00:00 2001 From: Shadowfacts Date: Fri, 28 Oct 2022 18:48:30 -0400 Subject: [PATCH] Fix reblog labels in new cells not being tappable Closes #197 --- Tusker/Views/Status/TimelineStatusCollectionViewCell.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/Tusker/Views/Status/TimelineStatusCollectionViewCell.swift b/Tusker/Views/Status/TimelineStatusCollectionViewCell.swift index 7a71eac0..6402860f 100644 --- a/Tusker/Views/Status/TimelineStatusCollectionViewCell.swift +++ b/Tusker/Views/Status/TimelineStatusCollectionViewCell.swift @@ -18,6 +18,7 @@ class TimelineStatusCollectionViewCell: UICollectionViewListCell, StatusCollecti $0.textColor = .secondaryLabel // this needs to have a higher priorty than the content container's zero height constraint $0.setContentHuggingPriority(.defaultHigh, for: .vertical) + $0.isUserInteractionEnabled = true $0.addGestureRecognizer(UITapGestureRecognizer(target: self, action: #selector(reblogLabelPressed))) }