handle only systray events when using gajim-remote show_next_pending_event. Fixes #6962

This commit is contained in:
Yann Leboulanger 2011-09-21 21:53:29 +02:00
parent 370c844f7b
commit 2618f235cb
1 changed files with 1 additions and 1 deletions

View File

@ -604,7 +604,7 @@ class SignalObject(dbus.service.Object):
Show the window(s) with next pending event in tabbed/group chats
"""
if gajim.events.get_nb_events():
account, jid, event = gajim.events.get_first_event()
account, jid, event = gajim.events.get_first_systray_event()
if not event:
return
gajim.interface.handle_event(account, jid, event.type_)