| Index: ash/common/shelf/shelf_tooltip_manager.cc
|
| diff --git a/ash/common/shelf/shelf_tooltip_manager.cc b/ash/common/shelf/shelf_tooltip_manager.cc
|
| index aed1034d43db7e0cd0e672684f73d4af9ce86dd8..6f7f1f7fb38e9e52c28573fdd229bd45a71f2951 100644
|
| --- a/ash/common/shelf/shelf_tooltip_manager.cc
|
| +++ b/ash/common/shelf/shelf_tooltip_manager.cc
|
| @@ -77,10 +77,9 @@ class ShelfTooltipManager::ShelfTooltipBubble
|
| theme->GetSystemColor(ui::NativeTheme::kColorId_TooltipBackground);
|
| set_color(background_color);
|
| label->SetBackgroundColor(background_color);
|
| + // The background is not opaque, so we can't do subpixel rendering.
|
| + label->SetSubpixelRenderingEnabled(false);
|
| AddChildView(label);
|
| - // The bubble border has its own background so the background created by the
|
| - // BubbleDialogDelegateView is redundant and would cause extra opacity.
|
| - set_background(nullptr);
|
|
|
| gfx::Insets insets(kArrowTopBottomOffset, kArrowLeftRightOffset);
|
| // Adjust the anchor location for asymmetrical borders of shelf item.
|
|
|