Implement opening thread modal when tapped

This commit is contained in:
ismailgulek
2021-11-10 15:42:42 +03:00
parent 56315641d5
commit 3f9907db93
4 changed files with 55 additions and 21 deletions
+6 -1
View File
@@ -4032,12 +4032,17 @@ const NSTimeInterval kResizeComposerAnimationDuration = .05;
#pragma mark - RoomDataSourceDelegate
- (void)roomDataSource:(RoomDataSource *)roomDataSource didUpdateEncryptionTrustLevel:(RoomEncryptionTrustLevel)roomEncryptionTrustLevel
- (void)roomDataSourceDidUpdateEncryptionTrustLevel:(RoomDataSource *)roomDataSource
{
[self updateInputToolbarEncryptionDecoration];
[self updateTitleViewEncryptionDecoration];
}
- (void)roomDataSource:(RoomDataSource *)roomDataSource didTapThread:(MXThread *)thread
{
[self openThreadWithId:thread.identifier];
}
#pragma mark - Segues
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender