Index: ui/message_center/views/bounded_label.cc |
diff --git a/ui/message_center/views/bounded_label.cc b/ui/message_center/views/bounded_label.cc |
index 90ee1dc2070f91d1d858383eb1396d51bbbce550..0acad8e22027f3b3da2036cd5d9fefd5614f1592 100644 |
--- a/ui/message_center/views/bounded_label.cc |
+++ b/ui/message_center/views/bounded_label.cc |
@@ -155,7 +155,7 @@ std::vector<base::string16> InnerBoundedLabel::GetWrappedText(int width, |
base::string16 last = |
wrapped[lines - 1] + base::UTF8ToUTF16(gfx::kEllipsis); |
if (width > 0 && gfx::GetStringWidth(last, font_list()) > width) |
- last = gfx::ElideText(last, font_list(), width, gfx::ELIDE_AT_END); |
+ last = gfx::ElideText(last, font_list(), width, gfx::ELIDE_TAIL); |
wrapped.resize(lines - 1); |
wrapped.push_back(last); |
} |