From 943338b00bf3d0521979e6b9aef500c062311aab Mon Sep 17 00:00:00 2001 From: Jean-Marie Traissard <jim@lapin.org> Date: Tue, 7 Nov 2006 23:36:48 +0000 Subject: [PATCH] We NEVER want to count gc_messages in roster title. Good catch hawke --- src/gajim.py | 2 +- src/roster_window.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/gajim.py b/src/gajim.py index 12534e568f..940e721d87 100755 --- a/src/gajim.py +++ b/src/gajim.py @@ -562,7 +562,7 @@ class Interface: contact.msg_id = msg_id # THIS MUST BE AFTER chatstates handling - # AND BEFORE playsound (else we here sounding on chatstates!) + # AND BEFORE playsound (else we ear sounding on chatstates!) if not message: # empty message text return diff --git a/src/roster_window.py b/src/roster_window.py index 1b917fa4b3..c9f4548510 100644 --- a/src/roster_window.py +++ b/src/roster_window.py @@ -3961,8 +3961,8 @@ _('If "%s" accepts this request you will know his or her status.') % jid) start = '' nb_unread = gajim.events.get_nb_events(['chat', 'normal', 'file-request', 'file-error', 'file-completed', - 'file-request-error', 'file-send-error', 'file-stopped', 'gc_msg', - 'printed_chat', 'printed_gc_msg']) + 'file-request-error', 'file-send-error', 'file-stopped', + 'printed_chat']) if nb_unread > 1: start = '[' + str(nb_unread) + '] ' elif nb_unread == 1: -- GitLab