| Index: ash/common/system/tray/system_tray.cc
|
| diff --git a/ash/common/system/tray/system_tray.cc b/ash/common/system/tray/system_tray.cc
|
| index 17491859c8472a95fa95bc739c24785afef98356..c4fbe76bf9c0267e6775f3fdd921a17ededd88a0 100644
|
| --- a/ash/common/system/tray/system_tray.cc
|
| +++ b/ash/common/system/tray/system_tray.cc
|
| @@ -225,7 +225,12 @@ SystemTray::SystemTray(WmShelf* wm_shelf)
|
| tray_update_(nullptr),
|
| screen_capture_tray_item_(nullptr),
|
| screen_share_tray_item_(nullptr) {
|
| - SetContentsBackground(true);
|
| + if (MaterialDesignController::IsShelfMaterial()) {
|
| + SetInkDropMode(InkDropMode::ON);
|
| + SetContentsBackground(false);
|
| + } else {
|
| + SetContentsBackground(true);
|
| + }
|
| }
|
|
|
| SystemTray::~SystemTray() {
|
|
|