From 53b1ae6a3680a53b2acd6b89036b44fd688ee5d5 Mon Sep 17 00:00:00 2001 From: Matthew Chen Date: Fri, 22 Jun 2018 16:56:33 -0400 Subject: [PATCH] Fix gutter constants. --- .../ConversationView/ConversationLayoutInfo.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Signal/src/ViewControllers/ConversationView/ConversationLayoutInfo.swift b/Signal/src/ViewControllers/ConversationView/ConversationLayoutInfo.swift index 97c7f7093..ddc4b2801 100644 --- a/Signal/src/ViewControllers/ConversationView/ConversationLayoutInfo.swift +++ b/Signal/src/ViewControllers/ConversationView/ConversationLayoutInfo.swift @@ -53,10 +53,10 @@ public class ConversationLayoutInfo: NSObject { private func updateProperties() { if thread.isGroupThread() { - gutterLeading = 16 + gutterLeading = 40 gutterTrailing = 20 } else { - gutterLeading = 40 + gutterLeading = 16 gutterTrailing = 20 } // TODO: Should these be symmetric? Should they reflect the other gutters?