Skip to content

Commit 470ffef

Browse files
committed
Review changes.
1 parent 5393ade commit 470ffef

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

components/Buttons/src/MDCButton.m

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@
4444

4545
// http://www.google.com/design/spec/components/buttons.html#buttons-main-buttons
4646
static const CGFloat MDCButtonDisabledAlpha = 0.1f;
47+
48+
// Blue 500 from http://www.google.com/design/spec/style/color.html#color-color-palette .
4749
static const uint32_t MDCButtonDefaultBackgroundColor = 0x2196F3;
4850

4951
// Checks whether the provided floating point number is exactly zero.

components/Ink/src/MDCInkTouchController.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ - (instancetype)initWithView:(UIView *)view {
6666
[_view addGestureRecognizer:_gestureRecognizer];
6767

6868
_defaultInkView = [[MDCInkView alloc] initWithFrame:view.bounds];
69-
// _defaultInkView.inkColor = [UIColor colorWithWhite:224.0f / 255.0f alpha:0.25f];
69+
_defaultInkView.inkColor = [UIColor colorWithWhite:224.0f / 255.0f alpha:0.25f];
7070
_defaultInkView.autoresizingMask =
7171
UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleWidth;
7272
}

0 commit comments

Comments
 (0)