| Index: ash/common/system/tray/tray_popup_utils.cc
|
| diff --git a/ash/common/system/tray/tray_popup_utils.cc b/ash/common/system/tray/tray_popup_utils.cc
|
| index b5e3deb294380a84caf165b59617c1bbc0a1994d..44a75fd50a940ea34c5b8bf21e9cbf4a0607e5d6 100644
|
| --- a/ash/common/system/tray/tray_popup_utils.cc
|
| +++ b/ash/common/system/tray/tray_popup_utils.cc
|
| @@ -113,9 +113,9 @@ class BorderlessLabelButton : public views::LabelButton {
|
| set_has_ink_drop_action_on_click(true);
|
| set_ink_drop_base_color(kTrayPopupInkDropBaseColor);
|
| set_ink_drop_visible_opacity(kTrayPopupInkDropRippleOpacity);
|
| - const int kHorizontalPadding = 8;
|
| + const int kHorizontalPadding = 20;
|
| SetBorder(views::CreateEmptyBorder(gfx::Insets(0, kHorizontalPadding)));
|
| - TrayPopupItemStyle style(nullptr, TrayPopupItemStyle::FontStyle::BUTTON);
|
| + TrayPopupItemStyle style(TrayPopupItemStyle::FontStyle::BUTTON);
|
| style.SetupLabel(label());
|
| // TODO(tdanderson): Update focus rect for material design. See
|
| // crbug.com/615892
|
| @@ -139,7 +139,7 @@ class BorderlessLabelButton : public views::LabelButton {
|
| // views::LabelButton:
|
| int GetHeightForWidth(int width) const override {
|
| if (MaterialDesignController::IsSystemTrayMenuMaterial())
|
| - return kMenuButtonSize - 2 * kTrayPopupInkDropInset;
|
| + return kMenuButtonSize;
|
|
|
| return LabelButton::GetHeightForWidth(width);
|
| }
|
|
|