Fix UV select separate not refreshing the display

This commit is contained in:
Campbell Barton 2020-07-06 21:23:35 +10:00
parent 2c0cab03ca
commit c632cf9ccd
1 changed files with 2 additions and 0 deletions

View File

@ -2061,6 +2061,7 @@ void UV_OT_select_linked_pick(wmOperatorType *ot)
*/
static int uv_select_split_exec(bContext *C, wmOperator *op)
{
Depsgraph *depsgraph = CTX_data_ensure_evaluated_depsgraph(C);
Scene *scene = CTX_data_scene(C);
ViewLayer *view_layer = CTX_data_view_layer(C);
const ToolSettings *ts = scene->toolsettings;
@ -2127,6 +2128,7 @@ static int uv_select_split_exec(bContext *C, wmOperator *op)
if (changed) {
changed_multi = true;
WM_event_add_notifier(C, NC_SPACE | ND_SPACE_IMAGE, NULL);
uv_select_tag_update_for_object(depsgraph, ts, obedit);
}
}
MEM_freeN(objects);