| Index: ash/common/system/chromeos/palette/palette_tray.cc
|
| diff --git a/ash/common/system/chromeos/palette/palette_tray.cc b/ash/common/system/chromeos/palette/palette_tray.cc
|
| index 95db0eb52129b14519923333ddcda48946a8de90..9d01c2b0733a7092c95ad8f23305aa4f53e50c6a 100644
|
| --- a/ash/common/system/chromeos/palette/palette_tray.cc
|
| +++ b/ash/common/system/chromeos/palette/palette_tray.cc
|
| @@ -43,6 +43,9 @@ const int kVerticalShelfVerticalPadding = 5;
|
| // Width of the palette itself (dp).
|
| const int kPaletteWidth = 360;
|
|
|
| +// Size of icon in the shelf (dp).
|
| +const int kShelfIconSize = 18;
|
| +
|
| // Creates a separator.
|
| views::Separator* CreateSeparator(views::Separator::Orientation orientation) {
|
| const int kSeparatorInset = 10;
|
| @@ -305,7 +308,7 @@ void PaletteTray::SetIconBorderForShelfAlignment() {
|
| void PaletteTray::UpdateTrayIcon() {
|
| gfx::VectorIconId icon = palette_tool_manager_->GetActiveTrayIcon(
|
| palette_tool_manager_->GetActiveTool(ash::PaletteGroup::MODE));
|
| - icon_->SetImage(CreateVectorIcon(icon, kShelfIconColor));
|
| + icon_->SetImage(CreateVectorIcon(icon, kShelfIconSize, kShelfIconColor));
|
| }
|
|
|
| void PaletteTray::UpdateIconVisibility() {
|
|
|