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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2013-06-04 19:56:14 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2013-06-04 19:56:14 +0400
commitd7bba8bc8b675172118e658315444d16ef392296 (patch)
tree1753eba88c1fd28fbf2733a756cbf4508e3248b7 /source
parent9fca5f47bc1062a728f3865ba815c62bf8e81cba (diff)
Fix #35623: separate mesh operator did not redraw the outliner.
Diffstat (limited to 'source')
-rw-r--r--source/blender/editors/mesh/editmesh_tools.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/editors/mesh/editmesh_tools.c b/source/blender/editors/mesh/editmesh_tools.c
index ed809f15184..70f841e5e59 100644
--- a/source/blender/editors/mesh/editmesh_tools.c
+++ b/source/blender/editors/mesh/editmesh_tools.c
@@ -2623,6 +2623,7 @@ static int edbm_separate_exec(bContext *C, wmOperator *op)
if (retval) {
/* delay depsgraph recalc until all objects are duplicated */
DAG_relations_tag_update(bmain);
+ WM_event_add_notifier(C, NC_OBJECT | ND_DRAW, NULL);
return OPERATOR_FINISHED;
}