Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesrna/intern/rna_access.c
| Context not available. | |||||
| /* we could add NULL check, for now don't */ | /* we could add NULL check, for now don't */ | ||||
| WM_msg_publish_rna(mbus, ptr, prop); | WM_msg_publish_rna(mbus, ptr, prop); | ||||
| } | } | ||||
| if (ptr->id.data != NULL && ((prop->flag & PROP_NO_DEG_UPDATE) == 0)) { | if (ptr->id.data != NULL) { | ||||
| const short id_type = GS(((ID *)ptr->id.data)->name); | const short id_type = GS(((ID *)ptr->id.data)->name); | ||||
| if (ID_TYPE_IS_COW(id_type)) { | if (ID_TYPE_IS_COW(id_type)) { | ||||
| DEG_id_tag_update(ptr->id.data, ID_RECALC_COPY_ON_WRITE); | DEG_id_tag_update(ptr->id.data, ID_RECALC_COPY_ON_WRITE); | ||||
| Context not available. | |||||