Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Eisel <eiseljulian@gmail.com>2017-03-01 21:56:37 +0300
committerJulian Eisel <eiseljulian@gmail.com>2017-03-01 22:13:40 +0300
commit0f7a664731eb6e22d9c838f33fb62b2a16182538 (patch)
treedecefc848233fecb4c2d0050f0a9e60ad9891a4e /source/blender/editors/space_outliner/space_outliner.c
parent18684e546f25feefa5a696b786e74fd63b590d10 (diff)
Fix collection renaming not checking for unique name in entire hierarchy
Only checked for unique name in direct children of the master collection. Also added missing listener for outliner.
Diffstat (limited to 'source/blender/editors/space_outliner/space_outliner.c')
-rw-r--r--source/blender/editors/space_outliner/space_outliner.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/editors/space_outliner/space_outliner.c b/source/blender/editors/space_outliner/space_outliner.c
index 348a4488f57..0014b1f048e 100644
--- a/source/blender/editors/space_outliner/space_outliner.c
+++ b/source/blender/editors/space_outliner/space_outliner.c
@@ -316,6 +316,7 @@ static void outliner_main_region_listener(bScreen *UNUSED(sc), ScrArea *UNUSED(s
case ND_RENDER_OPTIONS:
case ND_SEQUENCER:
case ND_LAYER:
+ case ND_LAYER_CONTENT:
case ND_WORLD:
ED_region_tag_redraw(ar);
break;