mirror of
https://github.com/blender/blender
synced 2026-09-26 16:15:47 +03:00
Fix #119508: Missing update after "Shade Flat" operator
An alternative fix would be calling `update_on_change_` in the attribute `try_create`function, but sticking with this more conservative fix seems better for 4.1. Pull Request: https://projects.blender.org/blender/blender/pulls/119515
This commit is contained in:
parent
e2d7bd199e
commit
130701763b
1 changed files with 1 additions and 0 deletions
|
|
@ -1612,6 +1612,7 @@ static int shade_smooth_exec(bContext *C, wmOperator *op)
|
|||
const float angle = RNA_float_get(op->ptr, "angle");
|
||||
bke::mesh_sharp_edges_set_from_angle(mesh, angle, keep_sharp_edges);
|
||||
}
|
||||
mesh.tag_sharpness_changed();
|
||||
BKE_mesh_batch_cache_dirty_tag(static_cast<Mesh *>(ob->data), BKE_MESH_BATCH_DIRTY_ALL);
|
||||
changed = true;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue