E notification: Use <br/> not <br>.

SVN revision: 67278
This commit is contained in:
Tom Hacohen 2012-01-17 15:50:37 +00:00
parent 8e4a1c3758
commit cd2d5add05
1 changed files with 1 additions and 1 deletions

View File

@ -591,7 +591,7 @@ _notification_format_message(Popup_Data *popup)
* newline kinds, and paragraph separator. ATM this will suffice. */
Eina_Strbuf *buf = eina_strbuf_new();
eina_strbuf_append(buf, b);
eina_strbuf_replace_all(buf, "\n", "<br>");
eina_strbuf_replace_all(buf, "\n", "<br/>");
edje_object_part_text_set(o, "notification.textblock.message",
eina_strbuf_string_get(buf));
eina_strbuf_free(buf);