diff --git a/idarling/core/core.py b/idarling/core/core.py index 9f1bf8a..3524631 100644 --- a/idarling/core/core.py +++ b/idarling/core/core.py @@ -153,12 +153,13 @@ def ev_get_bg_color(self, color, ea): return 1 return 0 - def auto_queue_empty(self, _): + def ev_auto_queue_empty(self, arg): core._plugin.logger.debug("Auto queue empty hook") if ida_auto.get_auto_state() == ida_auto.AU_NONE: client = core._plugin.network.client if client: client.call_events() + return super(self.__class__, self).ev_auto_queue_empty(arg) self._idp_hooks_core = IDPHooksCore() self._idp_hooks_core.hook()