From de44e6c29e632ac856b3e5f49285fba614a0b320 Mon Sep 17 00:00:00 2001 From: Ton Roosendaal Date: Wed, 5 Apr 2006 17:21:24 +0000 Subject: [PATCH] Fix #3999 Outliner, Group view, operation menu "unlink group" also set the group user counter to zero, which it should not do. Note; the definition of this command is to make sure no users exist of this group, but the group itself can still be there with objects. --- source/blender/src/outliner.c | 1 - 1 file changed, 1 deletion(-) diff --git a/source/blender/src/outliner.c b/source/blender/src/outliner.c index 1f6c94cf5b0..b047323376c 100644 --- a/source/blender/src/outliner.c +++ b/source/blender/src/outliner.c @@ -1808,7 +1808,6 @@ static void unlink_group_cb(TreeElement *te, TreeStoreElem *tsep, TreeStoreElem } else { unlink_group(group); - group->id.us= 0; } }