From 85d60694e54475af8f8aefe8954dfdf08a6e9582 Mon Sep 17 00:00:00 2001 From: Niels Andriesse Date: Wed, 23 Oct 2019 13:40:35 +1100 Subject: [PATCH] Enable voice message attachments --- .../ViewControllers/ConversationView/ConversationInputToolbar.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Signal/src/ViewControllers/ConversationView/ConversationInputToolbar.m b/Signal/src/ViewControllers/ConversationView/ConversationInputToolbar.m index fe7796873..434a07316 100644 --- a/Signal/src/ViewControllers/ConversationView/ConversationInputToolbar.m +++ b/Signal/src/ViewControllers/ConversationView/ConversationInputToolbar.m @@ -232,7 +232,7 @@ const CGFloat kMaxTextViewHeight = 98; // H Stack _hStack = [[UIStackView alloc] - initWithArrangedSubviews:@[ self.attachmentButton, vStackWrapper, /*self.voiceMemoButton,*/ self.sendButton ]]; + initWithArrangedSubviews:@[ self.attachmentButton, vStackWrapper, self.voiceMemoButton, self.sendButton ]]; self.hStack.axis = UILayoutConstraintAxisHorizontal; self.hStack.layoutMarginsRelativeArrangement = YES; self.hStack.layoutMargins = UIEdgeInsetsMake(6, 6, 6, 6);