@beatgram said in Attribute Manamger Update Delay When Description Added Dynamically:
self.links_list = []
(...)
self.links_list.append(bc)
This is an instance attribute that you change during the button handling. Changing it will not automatically cause C4D to redraw the GUI, which would be necessary to execute GetDDescription
where the interface is actually built. Try to enforce the redraw with c4d.EventAdd()
.