some events are not readable. thus unread event does not make sense. Pending Events is what we wanna say

This commit is contained in:
Nikos Kouremenos 2006-10-20 09:37:24 +00:00
parent 9d3ca72534
commit 946d180054
3 changed files with 5 additions and 5 deletions

View file

@ -74,8 +74,8 @@ class GajimRemote:
_('Shows or hides the roster window'), _('Shows or hides the roster window'),
[] []
], ],
'show_next_unread': [ 'show_next_pending_event': [
_('Popups a window with the next unread event'), _('Popups a window with the next pending event'),
[] []
], ],
'list_contacts': [ 'list_contacts': [

View file

@ -292,8 +292,8 @@ class SignalObject(dbus.service.Object):
return None return None
@dbus.service.method(INTERFACE) @dbus.service.method(INTERFACE)
def show_next_unread(self, *args): def show_next_pending_event(self, *args):
'''Show the window(s) with next waiting messages in tabbed/group chats. ''' '''Show the window(s) with next pending event in tabbed/group chats.'''
if gajim.events.get_nb_events(): if gajim.events.get_nb_events():
gajim.interface.systray.handle_first_event() gajim.interface.systray.handle_first_event()