diff options
author | Xavier Claessens <xclaesse@gmail.com> | 2011-05-03 04:18:53 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@gmail.com> | 2011-05-03 17:36:58 +0800 |
commit | 7aa2b0f9959c05bd4c361cd582438fd92e9229e4 (patch) | |
tree | ef630e1b87206af1c6b8a42d1a2e929bf530f768 /libempathy-gtk/empathy-theme-adium.c | |
parent | 1a3795ae51d0d0539a8a4ab267e743811d9ce75c (diff) | |
download | gsoc2013-empathy-7aa2b0f9959c05bd4c361cd582438fd92e9229e4.tar gsoc2013-empathy-7aa2b0f9959c05bd4c361cd582438fd92e9229e4.tar.gz gsoc2013-empathy-7aa2b0f9959c05bd4c361cd582438fd92e9229e4.tar.bz2 gsoc2013-empathy-7aa2b0f9959c05bd4c361cd582438fd92e9229e4.tar.lz gsoc2013-empathy-7aa2b0f9959c05bd4c361cd582438fd92e9229e4.tar.xz gsoc2013-empathy-7aa2b0f9959c05bd4c361cd582438fd92e9229e4.tar.zst gsoc2013-empathy-7aa2b0f9959c05bd4c361cd582438fd92e9229e4.zip |
Adium: Mark autoreply message
Diffstat (limited to 'libempathy-gtk/empathy-theme-adium.c')
-rw-r--r-- | libempathy-gtk/empathy-theme-adium.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libempathy-gtk/empathy-theme-adium.c b/libempathy-gtk/empathy-theme-adium.c index c334ce3d7..0d09de91c 100644 --- a/libempathy-gtk/empathy-theme-adium.c +++ b/libempathy-gtk/empathy-theme-adium.c @@ -726,9 +726,10 @@ theme_adium_append_message (EmpathyChatView *view, if (empathy_message_should_highlight (msg)) { g_string_append (message_classes, " mention"); } + if (empathy_message_get_tptype (msg) == TP_CHANNEL_TEXT_MESSAGE_TYPE_AUTO_REPLY) { + g_string_append (message_classes, " autoreply"); + } /* FIXME: other classes: - * autoreply - the message is an automatic response, generally due to an - * away status * status - the message is a status change * event - the message is a notification of something happening * (for example, encryption being turned on) |