Skip to content

Commit

Permalink
[Ink] Enable updated ink for collection views (#2546)
Browse files Browse the repository at this point in the history
* Enable updated ink for collection views

* Set usesLegacyInkRipple in cell
  • Loading branch information
Junius Gunaratne authored and ianegordon committed Dec 2, 2017
1 parent 7dc9470 commit 10047df
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions components/CollectionCells/src/MDCCollectionViewCell.m
Expand Up @@ -282,6 +282,7 @@ - (CGRect)accessoryFrame {
- (MDCInkView *)inkView {
if (!_inkView) {
_inkView = [[MDCInkView alloc] initWithFrame:self.bounds];
_inkView.usesLegacyInkRipple = NO;
[self addSubview:_inkView];
}
return _inkView;
Expand Down

0 comments on commit 10047df

Please sign in to comment.