Room preview of room link: Fixed the display of the text input after joining the room

This commit is contained in:
manuroe
2016-04-15 15:31:55 +02:00
parent 2d95b4bb23
commit 7016b4ad92
@@ -1439,7 +1439,19 @@
if (succeed)
{
roomPreviewData = nil;
// Enable back the text input
[self setRoomInputToolbarViewClass:RoomInputToolbarView.class];
[UIView setAnimationsEnabled:NO];
[self roomInputToolbarView:self.inputToolbarView heightDidChanged:((RoomInputToolbarView*)self.inputToolbarView).mainToolbarMinHeightConstraint.constant completion:nil];
[UIView setAnimationsEnabled:YES];
// And the extra area
[self setRoomActivitiesViewClass:RoomActivitiesView.class];
[self refreshRoomTitle];
[self refreshRoomInputToolbar];
}
}];