Fix scroll down button.

// FREEBIE
pull/1/head
Matthew Chen 7 years ago
parent c093cf0831
commit dbe2c6aa76

@ -3115,9 +3115,11 @@ typedef NS_ENUM(NSInteger, MessagesRangeSizeMode) {
NSForegroundColorAttributeName : [UIColor ows_materialBlueColor],
NSBaselineOffsetAttributeName : @(-0.5f),
}];
iconLabel.userInteractionEnabled = NO;
UIView *circleView = [UIView new];
circleView.backgroundColor = [UIColor colorWithWhite:0.95f alpha:1.f];
circleView.userInteractionEnabled = NO;
circleView.layer.cornerRadius = kCircleSize * 0.5f;
circleView.layer.shadowColor = [UIColor colorWithWhite:0.5f alpha:1.f].CGColor;
circleView.layer.shadowOffset = CGSizeMake(+1.f, +2.f);

Loading…
Cancel
Save