Rename BubbleCellReadReceiptsDisplayable to RoomCellReadReceiptsDisplayable.

This commit is contained in:
SBiOSoftWhare
2022-02-16 10:43:21 +01:00
parent 09520f2de3
commit 2837acfc0a
9 changed files with 10 additions and 10 deletions
@@ -119,7 +119,7 @@ class SizableBaseBubbleCell: BaseRoomCell, SizableBaseBubbleCellType {
var height = sizingView.systemLayoutSizeFitting(fittingSize).height
// Add read receipt height if needed
if let roomBubbleCellData = cellData as? RoomBubbleCellData, let readReceipts = roomBubbleCellData.readReceipts, readReceipts.count > 0, sizingView is BubbleCellReadReceiptsDisplayable {
if let roomBubbleCellData = cellData as? RoomBubbleCellData, let readReceipts = roomBubbleCellData.readReceipts, readReceipts.count > 0, sizingView is RoomCellReadReceiptsDisplayable {
height+=RoomBubbleCellLayout.readReceiptsViewHeight
}