From 9895ad165a1579bbc32b24b9dcbffb4daa6ce485 Mon Sep 17 00:00:00 2001 From: SBiOSoftWhare Date: Wed, 10 Apr 2019 12:10:15 +0200 Subject: [PATCH 1/2] Make read receipt label text color use primary text color (Fix #2294). --- Riot/Modules/Room/DataSources/RoomDataSource.m | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Riot/Modules/Room/DataSources/RoomDataSource.m b/Riot/Modules/Room/DataSources/RoomDataSource.m index 03457f1dd..49d189283 100644 --- a/Riot/Modules/Room/DataSources/RoomDataSource.m +++ b/Riot/Modules/Room/DataSources/RoomDataSource.m @@ -314,6 +314,8 @@ // Set the container tag to be able to retrieve read receipts container from component index (see component selection in MXKRoomBubbleTableViewCell (Vector) category). avatarsContainer.tag = index; + avatarsContainer.moreLabelTextColor = ThemeService.shared.theme.textPrimaryColor; + [avatarsContainer refreshReceiptSenders:roomMembers withPlaceHolders:placeholders andAlignment:ReadReceiptAlignmentRight]; avatarsContainer.readReceipts = receipts; UITapGestureRecognizer *tapRecognizer = [[UITapGestureRecognizer alloc] initWithTarget:cell action:@selector(onReceiptContainerTap:)]; From b78497731c4147e02c8ccfd345010d2f234932c3 Mon Sep 17 00:00:00 2001 From: SBiOSoftWhare Date: Wed, 10 Apr 2019 12:11:12 +0200 Subject: [PATCH 2/2] Update changes --- CHANGES.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGES.rst b/CHANGES.rst index c64fb983f..e9bd418bc 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -13,6 +13,7 @@ Improvements: Bug fix: * Share extension: Fix a crash when receive a memory warning (PR #2352). * Upgraded rooms show up in the share extension twice (#2293). + * +N read receipt text is invisible on dark theme (#2294). Changes in 0.8.4 (2019-03-21) ===============================================