diff options
Diffstat (limited to 'ash')
-rw-r--r-- | ash/system/web_notification/web_notification_tray.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ash/system/web_notification/web_notification_tray.cc b/ash/system/web_notification/web_notification_tray.cc index ecfeb21..b176948 100644 --- a/ash/system/web_notification/web_notification_tray.cc +++ b/ash/system/web_notification/web_notification_tray.cc @@ -458,8 +458,9 @@ class WebNotificationView : public views::View, const int message_width = kWebNotificationWidth - kWebNotificationIconSize - kWebNotificationButtonWidth - (padding_width * 3); columns->AddColumn(views::GridLayout::FILL, views::GridLayout::LEADING, - 100, /* resize percent */ - views::GridLayout::FIXED, message_width, message_width); + 0, /* resize percent */ + views::GridLayout::FIXED, + message_width, message_width); columns->AddPaddingColumn(0, padding_width); |