Custom Addon missing in Operator Log

Hi everyone,

Is there a way to “add”/“see” custom operators in bpy.context.window_manager.operators list?

Thanks

Ok I think I might have solved it.
The operator has to have:

  • bl_options = {‘REGISTER’, ‘UNDO’}
  • and at some point return {‘FINISHED’} when done (it worked from invoke() or execute())