Fix multiple-object uv selection not "deselecting" other objects

This commit is contained in:
Dalai Felinto 2018-10-19 08:49:55 -03:00
parent d01e0d1ef1
commit 15d5cd961c
1 changed files with 4 additions and 1 deletions

View File

@ -2576,7 +2576,10 @@ static int uv_mouse_select_multi(
#endif
}
uv_select_tag_update_for_object(depsgraph, ts, obedit);
for (uint ob_index = 0; ob_index < objects_len; ob_index++) {
Object *obiter = objects[ob_index];
uv_select_tag_update_for_object(depsgraph, ts, obiter);
}
return OPERATOR_PASS_THROUGH | OPERATOR_FINISHED;
}