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
path: root/source
diff options
context:
space:
mode:
authorDalai Felinto <dfelinto@gmail.com>2018-01-25 14:55:59 +0300
committerDalai Felinto <dfelinto@gmail.com>2018-01-25 14:55:59 +0300
commit10f92f299e356be1edeff6e46bc3bee793c5b52e (patch)
treee4873d192a75f4f5c7b38ba16b31f31fc47d3477 /source
parent58362939906b31fce02b8f9598f4321e83971b7d (diff)
parent8e341633e986ccbc9394c0317df12299aba453d1 (diff)
Merge remote-tracking branch 'origin/master' into blender2.8
Diffstat (limited to 'source')
-rw-r--r--source/blender/editors/object/object_add.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/editors/object/object_add.c b/source/blender/editors/object/object_add.c
index 07eeb48eaa6..0fc2b58ff9f 100644
--- a/source/blender/editors/object/object_add.c
+++ b/source/blender/editors/object/object_add.c
@@ -2475,7 +2475,8 @@ static int add_named_exec(bContext *C, wmOperator *op)
DEG_relations_tag_update(bmain);
- WM_event_add_notifier(C, NC_SCENE | ND_OB_SELECT | ND_OB_ACTIVE, scene);
+ WM_event_add_notifier(C, NC_SCENE | ND_OB_SELECT, scene);
+ WM_event_add_notifier(C, NC_SCENE | ND_OB_ACTIVE, scene);
return OPERATOR_FINISHED;
}