handle only systray events when using gajim-remote show_next_pending_event. Fixes #6962
This commit is contained in:
parent
370c844f7b
commit
2618f235cb
|
@ -604,7 +604,7 @@ class SignalObject(dbus.service.Object):
|
||||||
Show the window(s) with next pending event 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():
|
||||||
account, jid, event = gajim.events.get_first_event()
|
account, jid, event = gajim.events.get_first_systray_event()
|
||||||
if not event:
|
if not event:
|
||||||
return
|
return
|
||||||
gajim.interface.handle_event(account, jid, event.type_)
|
gajim.interface.handle_event(account, jid, event.type_)
|
||||||
|
|
Loading…
Reference in New Issue