OnModifyObjectAttributes event not triggered

Hi,

If I script in RhinoPython and modify the user text of an object (rs.setUserText) the event OnModifyObjectAttributes(…) of my custom plugin is not triggered?! If I perform the same step manually within Rhino command prompt everything works fine as expected…
Also all the other events of my event watcher are triggered fine, like e.g. addObject(…)
Is this a desired behaviour?

Hi @felix_frischmann,

No, this is not a desired behavior. But it is a known one.

https://mcneel.myjetbrains.com/youtrack/issue/RH-29393

– Dale

Thanks for the fast reply!
Is there any workaround to catch in my c++ plugin efficiently if user text was added to an object via scripting?