Cosmetic on dots menu & micro icon on conversation view

This commit is contained in:
Christophe Deschamps 2022-08-17 18:20:48 +02:00 committed by QuentinArguillere
parent 92e973ba13
commit 69e4e8c374
2 changed files with 3 additions and 2 deletions

View file

@ -195,7 +195,8 @@ static UICompositeViewDescription *compositeDescription = nil;
_vrInnerView.layer.masksToBounds = YES;
_vrWaveMaskPlayer.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"color_L"]]; // rgba(1,88,7,0.2);
_showVoiceRecorderView = false;
_toggleMenuButton.imageView.contentMode = UIViewContentModeScaleAspectFit;
_toggleRecord.imageView.contentMode = UIViewContentModeScaleAspectFit;
}
- (void)refreshData {

View file

@ -380,7 +380,7 @@ static const CGFloat REPLY_OR_FORWARD_TAG_HEIGHT = 18;
return cached;
}
CGSize size = [self ViewHeightForMessageText:chat withWidth:width textForImdn:nil];
CGSize size = [self ViewHeightForMessageText:chat withWidth:width textForImdn:nil];
size.height += linphone_chat_message_is_forward(chat) || linphone_chat_message_is_reply(chat) ? REPLY_OR_FORWARD_TAG_HEIGHT : 0;
size.height += linphone_chat_message_is_reply(chat) ? REPLY_CHAT_BUBBLE_HEIGHT+5 : 0;