Skip to content
This repository has been archived by the owner on Sep 20, 2023. It is now read-only.

Improve event spacing to give better context #2672

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions Classes/Issues/Renamed/IssueRenamedCell.swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ protocol IssueRenamedCellDelegate: class {
final class IssueRenamedCell: UICollectionViewCell {

static let titleInset = UIEdgeInsets(
top: Styles.Sizes.labelEventHeight,
top: Styles.Sizes.labelEventHeight - Styles.Sizes.rowSpacing,
left: 0,
bottom: Styles.Sizes.rowSpacing,
right: 0
Expand Down Expand Up @@ -47,7 +47,6 @@ final class IssueRenamedCell: UICollectionViewCell {
make.left.equalTo(actorLabel.snp.right).offset(Styles.Sizes.inlineSpacing)
make.centerY.equalTo(actorLabel)
}

contentView.addSubview(titleView)
}

Expand Down