]> git.0d.be Git - empathy.git/commitdiff
Move TP_CHANNEL_CHAT_STATE_PAUSED to the not typing case. Fixes bug
authorXavier Claessens <xclaesse@gmail.com>
Fri, 21 Sep 2007 13:22:52 +0000 (13:22 +0000)
committerXavier Claessens <xclaesse@src.gnome.org>
Fri, 21 Sep 2007 13:22:52 +0000 (13:22 +0000)
2007-09-21  Xavier Claessens  <xclaesse@gmail.com>

* 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
libempathy-gtk/empathy-chat.c

index 53e764d4950ea25cfc774b8587398503e394d9f1..89a8a9fe6d07b055c47590bcae5c32090f41747a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-09-21  Xavier Claessens  <xclaesse@gmail.com>
+
+       * 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  <xclaesse@gmail.com>
 
        * libempathy-gtk/empathy-status-icon.c: Tooltip for subscription request
index af35b033467109b8c6972490614af5083f83c5a7..c98cc12df4aa9163688ffefd68be6c6bac56aaa9 100644 (file)
@@ -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) {