Skip to content

Commit e3f96a1

Browse files
committed
Removed merge conflicts
1 parent 10454d7 commit e3f96a1

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

TORoundedButton/TORoundedButton.m

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -231,14 +231,10 @@ - (void)layoutSubviews {
231231
UIView *const contentView = _overrideContentView ?: _contentView;
232232
contentView.frame = ({
233233
CGRect frame = contentBounds;
234-
<<<<<<< Updated upstream
235-
frame.size = [contentView sizeThatFits:contentBounds.size];
236-
=======
237234
const CGSize intrinsicContentSize = contentView.intrinsicContentSize;
238235
if (intrinsicContentSize.width > 0.0f && intrinsicContentSize.height > 0.0f) {
239236
frame.size = [contentView sizeThatFits:contentBounds.size];
240237
}
241-
>>>>>>> Stashed changes
242238
frame.origin.x = (boundsSize.width - frame.size.width) * 0.5f;
243239
frame.origin.y = (boundsSize.height - frame.size.height) * 0.5f;
244240
CGRectIntegral(frame);

0 commit comments

Comments
 (0)