Fix #104947 : Tag mesh for depsgraph update on UV map deletion #105040

Merged
Martijn Versteegh merged 1 commits from Baardaap/blender:fix104947 into blender-v3.5-release 2023-02-21 19:27:34 +01:00
1 changed files with 3 additions and 0 deletions

View File

@ -645,6 +645,9 @@ static int mesh_uv_texture_remove_exec(bContext *C, wmOperator *op)
WM_event_add_notifier(C, NC_SCENE | ND_TOOLSETTINGS, nullptr);
}
DEG_id_tag_update(&me->id, ID_RECALC_GEOMETRY);
WM_main_add_notifier(NC_GEOM | ND_DATA, me);
return OPERATOR_FINISHED;
}