summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Juick/MessageCell.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/Juick/MessageCell.m b/Juick/MessageCell.m
index 1dda53d..48ddb36 100644
--- a/Juick/MessageCell.m
+++ b/Juick/MessageCell.m
@@ -79,10 +79,10 @@
}];
[self.bodyLabel makeConstraints:^(MASConstraintMaker *make) {
+ make.edges.equalTo(self.contentView).with.insets(padding).priorityLow();
make.leading.equalTo(self.contentView.leading).with.offset(padding.left);
make.top.equalTo(self.avatar.bottom).with.offset(padding.top);
make.trailing.equalTo(self.contentView.trailing).with.offset(-padding.right);
- make.bottom.equalTo(self.contentView.bottom).with.offset(-padding.bottom);
}];
self.didSetupConstraints = YES;