Fix #105989: Outliner: Make Single User duplicates data #105991

Merged
Philipp Oeser merged 1 commits from lichtwerk/blender:105989 into main 2023-04-04 09:12:47 +02:00
1 changed files with 1 additions and 1 deletions

View File

@ -821,7 +821,7 @@ bool id_single_user(bContext *C, ID *id, PointerRNA *ptr, PropertyRNA *prop)
ID *newid = NULL;
PointerRNA idptr;
if (id) {
if (id && (ID_REAL_USERS(id) > 1)) {
/* If property isn't editable,
* we're going to have an extra block hanging around until we save. */
if (RNA_property_editable(ptr, prop)) {