Skip to content

Commit

Permalink
Set the default values for showsVerticalScrollIndicator and showsHori…
Browse files Browse the repository at this point in the history
…zontalScrollIndicator (#1181)

The default values of showsVerticalScrollIndicator and showsHorizontalScrollIndicator should be YES to correspond with the UIKit flags.
  • Loading branch information
maicki authored Oct 18, 2018
1 parent bfb2298 commit d669be0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Source/ASCollectionNode.mm
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,8 @@ - (instancetype)init
_contentInset = UIEdgeInsetsZero;
_contentOffset = CGPointZero;
_animatesContentOffset = NO;
_showsVerticalScrollIndicator = YES;
_showsHorizontalScrollIndicator = YES;
}
return self;
}
Expand Down

0 comments on commit d669be0

Please sign in to comment.