From fb4a4ee69c5ed8188ba9b39963dbaf68ec9cd1b4 Mon Sep 17 00:00:00 2001 From: Ryan Nystrom Date: Thu, 28 Sep 2017 19:36:45 -0400 Subject: [PATCH] center ... with avatar in comments, fixes #461 --- Classes/Issues/Comments/Details/IssueCommentDetailCell.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Classes/Issues/Comments/Details/IssueCommentDetailCell.swift b/Classes/Issues/Comments/Details/IssueCommentDetailCell.swift index 741d9527..d06c99a6 100644 --- a/Classes/Issues/Comments/Details/IssueCommentDetailCell.swift +++ b/Classes/Issues/Comments/Details/IssueCommentDetailCell.swift @@ -81,7 +81,7 @@ final class IssueCommentDetailCell: UICollectionViewCell, ListBindable { contentView.addSubview(moreButton) moreButton.snp.makeConstraints { make in make.size.equalTo(Styles.Sizes.icon) - make.centerY.equalTo(contentView) + make.centerY.equalTo(imageView) make.right.equalTo(contentView).offset(-Styles.Sizes.gutter) }