# HG changeset patch # User Sadrul Habib Chowdhury # Date 1185313464 0 # Node ID 5551e5ec1ce04e29ccf29e12f63686dbddb0529c # Parent 81dcdd73dff0a1a582036ff50c4acaadf1b2765e Insert a newline in the tooltip. diff -r 81dcdd73dff0 -r 5551e5ec1ce0 finch/gntblist.c --- 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);