Skip to content

Commit b84ef53

Browse files
committed
Fixed layout also for circle indicator
1 parent c62a8f0 commit b84ef53

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

BitStore/Cells/TransactionCell.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ - (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reus
5050
[self addSubview:_dateLabel];
5151

5252
_circleIndicator = [[CircleIndicator alloc] initWithCircles:6];
53-
_circleIndicator.frame = CGRectMake(self.frame.size.width - 80, 30, 70, 20);
5453
_circleIndicator.hidden = YES;
5554
[self addSubview:_circleIndicator];
5655

@@ -106,6 +105,7 @@ - (void)layoutSubviews {
106105
_personLabel.frame = CGRectMake(10, 0, self.frame.size.width - 145, 55);
107106
_valueLabel.frame = CGRectMake(self.frame.size.width - 135, 8, 125, 20);
108107
_dateLabel.frame = CGRectMake(self.frame.size.width - 135, 28, 125, 20);
108+
_circleIndicator.frame = CGRectMake(self.frame.size.width - 80, 30, 70, 20);
109109
}
110110

111111
- (void)setHighlighted:(BOOL)highlighted animated:(BOOL)animated {

0 commit comments

Comments
 (0)