Mercurial > pidgin
changeset 18635:5551e5ec1ce0
Insert a newline in the tooltip.
author | Sadrul Habib Chowdhury <imadil@gmail.com> |
---|---|
date | Tue, 24 Jul 2007 21:44:24 +0000 |
parents | 81dcdd73dff0 |
children | 7a5bf42aa8d1 |
files | finch/gntblist.c |
diffstat | 1 files changed, 3 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/finch/gntblist.c Mon Jul 23 20:56:46 2007 +0000 +++ b/finch/gntblist.c Tue Jul 24 21:44:24 2007 +0000 @@ -1325,8 +1325,10 @@ strip = purple_markup_strip_html(tmp); g_string_append(str, strip); - if (purple_presence_is_status_primitive_active(presence, PURPLE_STATUS_MOBILE)) + if (purple_presence_is_status_primitive_active(presence, PURPLE_STATUS_MOBILE)) { + g_string_append(str, "\n"); g_string_append(str, _("On Mobile")); + } g_free(strip); g_free(tmp);