# HG changeset patch # User Sean Egan # Date 1187053196 0 # Node ID f736a9493a365956e02b3c4d0e4542c8d96d8610 # Parent f243a10045e2d6a9bec8232da2d5d976b72c9d4c Don't truncate non-aliases diff -r f243a10045e2 -r f736a9493a36 pidgin/gtkconv.c --- a/pidgin/gtkconv.c Tue Aug 14 00:55:44 2007 +0000 +++ b/pidgin/gtkconv.c Tue Aug 14 00:59:56 2007 +0000 @@ -6300,7 +6300,7 @@ else title = g_strdup(purple_conversation_get_title(conv)); - if ((truncate = strchr(title, ' ')) || + if (((truncate = strchr(title, ' ')) && strcmp(title, conv->name)) || (truncate = strchr(title, '@'))) { truncchar = *truncate; *truncate = '\0';