Mercurial > pidgin
changeset 19236:f736a9493a36
Don't truncate non-aliases
| author | Sean Egan <seanegan@gmail.com> |
|---|---|
| date | Tue, 14 Aug 2007 00:59:56 +0000 |
| parents | f243a10045e2 |
| children | f5d9b9bbf5fd |
| files | pidgin/gtkconv.c |
| diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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';
