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:
authorDalai Felinto <dfelinto@gmail.com>2018-08-24 18:15:53 +0300
committerDalai Felinto <dfelinto@gmail.com>2018-08-24 18:16:37 +0300
commit21661d16815de21285032b0882228bd990d23081 (patch)
tree46e3c7b2c3ad974a761fe8d636337b610672ce84
parent3b2438192bdabc03030eb00a2fdb081aef18f962 (diff)
Fix MESH_OT_shortest_path_pick
It was working only for REDO. The reason was that we were not tagging our beloved new multi-threaded depedency graph.
-rw-r--r--source/blender/editors/mesh/editmesh_select.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/editors/mesh/editmesh_select.c b/source/blender/editors/mesh/editmesh_select.c
index 395943dd4f5..265734130c9 100644
--- a/source/blender/editors/mesh/editmesh_select.c
+++ b/source/blender/editors/mesh/editmesh_select.c
@@ -4406,6 +4406,7 @@ static int edbm_select_axis_exec(bContext *C, wmOperator *op)
}
EDBM_selectmode_flush(em);
WM_event_add_notifier(C, NC_GEOM | ND_DATA, obedit_iter->data);
+ DEG_id_tag_update(obedit_iter->data, DEG_TAG_SELECT_UPDATE);
}
MEM_freeN(objects);
return OPERATOR_FINISHED;