From fad6f33cf1c3c3af5a93700601e09e8263f2ffba Mon Sep 17 00:00:00 2001 From: Xavier Claessens Date: Fri, 21 Sep 2007 13:22:52 +0000 Subject: [PATCH] Move TP_CHANNEL_CHAT_STATE_PAUSED to the not typing case. Fixes bug 2007-09-21 Xavier Claessens * libempathy-gtk/empathy-chat.c: Move TP_CHANNEL_CHAT_STATE_PAUSED to the not typing case. Fixes bug #474603 (Cosimo Cecchi). svn path=/trunk/; revision=307 --- ChangeLog | 5 +++++ libempathy-gtk/empathy-chat.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 53e764d4..89a8a9fe 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-09-21 Xavier Claessens + + * libempathy-gtk/empathy-chat.c: Move TP_CHANNEL_CHAT_STATE_PAUSED to + the not typing case. Fixes bug #474603 (Cosimo Cecchi). + 2007-09-21 Xavier Claessens * libempathy-gtk/empathy-status-icon.c: Tooltip for subscription request diff --git a/libempathy-gtk/empathy-chat.c b/libempathy-gtk/empathy-chat.c index af35b033..c98cc12d 100644 --- a/libempathy-gtk/empathy-chat.c +++ b/libempathy-gtk/empathy-chat.c @@ -1103,6 +1103,7 @@ chat_state_changed_cb (EmpathyTpChat *tp_chat, switch (state) { case TP_CHANNEL_CHAT_STATE_GONE: case TP_CHANNEL_CHAT_STATE_INACTIVE: + case TP_CHANNEL_CHAT_STATE_PAUSED: case TP_CHANNEL_CHAT_STATE_ACTIVE: /* Contact is not composing */ if (l) { @@ -1111,7 +1112,6 @@ chat_state_changed_cb (EmpathyTpChat *tp_chat, g_list_free1 (l); } break; - case TP_CHANNEL_CHAT_STATE_PAUSED: case TP_CHANNEL_CHAT_STATE_COMPOSING: /* Contact is composing */ if (!l) { -- 2.39.2