diff --git a/src/roster_window.py b/src/roster_window.py index 6cfd7cd8beba69709903f4f4737182d05c552fff..3f8b8e9cdf1018fcc8f4de8b966dffa21adc15ca 100644 --- a/src/roster_window.py +++ b/src/roster_window.py @@ -2007,7 +2007,24 @@ class RosterWindow: add_special_notification_menuitem.set_no_show_all(True) # send custom status icon - if gajim.interface.status_sent_to_users.has_key(account) and \ + blocked = False + if jid in gajim.connections[account].blocked_contacts: + blocked = True + else: + groups = contact.groups + if contact.is_observer(): + groups = [_('Observers')] + elif not groups: + groups = [_('General')] + for group in groups: + if group in gajim.connections[account].blocked_groups: + blocked = True + break + if blocked: + icon = gtk.image_new_from_stock(gtk.STOCK_STOP, gtk.ICON_SIZE_MENU) + send_custom_status_menuitem.set_image(icon) + send_custom_status_menuitem.set_sensitive(False) + elif gajim.interface.status_sent_to_users.has_key(account) and \ jid in gajim.interface.status_sent_to_users[account]: send_custom_status_menuitem.set_image( self.load_icon(gajim.interface.status_sent_to_users[account][jid]))