| Index: ash/system/tray/system_tray.cc
|
| diff --git a/ash/system/tray/system_tray.cc b/ash/system/tray/system_tray.cc
|
| index dba58c96b607dfceccf1023370f96755a245ca7a..6c5da060d15ee1f4bded5cfbb7cb8fd4449f75ae 100644
|
| --- a/ash/system/tray/system_tray.cc
|
| +++ b/ash/system/tray/system_tray.cc
|
| @@ -375,7 +375,9 @@ void SystemTray::ShowItems(const std::vector<SystemTrayItem*>& items,
|
| init_params.arrow_offset = arrow_offset;
|
| // For Volume and Brightness we don't want to show an arrow when
|
| // they are shown in a bubble by themselves.
|
| - init_params.hide_arrow = items.size() == 1 && items[0]->ShouldHideArrow();
|
| + init_params.arrow_paint_type = views::BubbleBorder::PAINT_NORMAL;
|
| + if (items.size() == 1 && items[0]->ShouldHideArrow())
|
| + init_params.arrow_paint_type = views::BubbleBorder::PAINT_TRANSPARENT;
|
| SystemTrayBubble* bubble = new SystemTrayBubble(this, items, bubble_type);
|
| system_bubble_.reset(new internal::SystemBubbleWrapper(bubble));
|
| system_bubble_->InitView(this, tray_container(), &init_params);
|
|
|