From 940be25b18fa98e308192edbc92fcbd8af8cd081 Mon Sep 17 00:00:00 2001 From: Nathan Tannar Date: Thu, 7 Dec 2017 12:36:59 -0800 Subject: [PATCH] layoutStackViews typo --- Sources/Views/MessageInputBar.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Sources/Views/MessageInputBar.swift b/Sources/Views/MessageInputBar.swift index b5057552..93da2c4d 100644 --- a/Sources/Views/MessageInputBar.swift +++ b/Sources/Views/MessageInputBar.swift @@ -479,8 +479,8 @@ open class MessageInputBar: UIView { bottomStackView.setNeedsLayout() bottomStackView.layoutIfNeeded() case .top: - bottomStackView.setNeedsLayout() - bottomStackView.layoutIfNeeded() + topStackView.setNeedsLayout() + topStackView.layoutIfNeeded() } } }