Chromium Code Reviews| Index: ash/system/web_notification/web_notification_tray.cc |
| diff --git a/ash/system/web_notification/web_notification_tray.cc b/ash/system/web_notification/web_notification_tray.cc |
| index e8c9e70bc73f43388104dcc6546d6b0ba0f2b15a..50d7f5fff6e90eb4607372c0833648ea3ea57a36 100644 |
| --- a/ash/system/web_notification/web_notification_tray.cc |
| +++ b/ash/system/web_notification/web_notification_tray.cc |
| @@ -253,7 +253,8 @@ bool WebNotificationTray::ShowMessageCenterInternal(bool show_settings) { |
| ? GetShelfLayoutManager()->GetIdealBounds().y() |
| : status_area_window->GetBoundsInRootWindow().bottom(); |
| - message_center_bubble->SetMaxHeight(std::max(0, max_height - kTraySpacing)); |
| + message_center_bubble->SetMaxHeight( |
| + std::max(0, max_height - kMessageCenterBubblePadding)); |
|
tdanderson
2016/05/26 22:55:56
I could be mistaken but shouldn't this still be Ge
yiyix
2016/06/02 03:54:54
You are right.
|
| if (show_settings) |
| message_center_bubble->SetSettingsVisible(); |
| message_center_bubble_.reset( |