From b1d27c9256f8027c079285fffb6be1694514adae Mon Sep 17 00:00:00 2001 From: Cody Weaver Date: Tue, 11 Sep 2018 13:16:07 -0400 Subject: [PATCH] Update cell image alpha (#5088) This is updating a constant that was previously the wrong value. This doesn't close any issues. --- .../ActionSheet/src/private/MDCActionSheetItemTableViewCell.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/ActionSheet/src/private/MDCActionSheetItemTableViewCell.m b/components/ActionSheet/src/private/MDCActionSheetItemTableViewCell.m index ef977fc49eb..565476debea 100644 --- a/components/ActionSheet/src/private/MDCActionSheetItemTableViewCell.m +++ b/components/ActionSheet/src/private/MDCActionSheetItemTableViewCell.m @@ -16,7 +16,7 @@ #import "MaterialTypography.h" -static const CGFloat ImageAlpha = 0.54f; +static const CGFloat ImageAlpha = 0.6f; static const CGFloat LabelAlpha = 0.87f; static const CGFloat ImageLeadingPadding = 16.f; static const CGFloat ImageTopPadding = 16.f;