Fix T78525: Status bar not reset after Edit Voxel Size

Reviewed By: sergey

Maniphest Tasks: T78525

Differential Revision: https://developer.blender.org/D8181
This commit is contained in:
Pablo Dobarro 2020-07-02 16:55:33 +02:00
parent 7099459245
commit 95f3397a68
Notes: blender-bot 2023-02-14 01:21:16 +01:00
Referenced by issue #78525, Status bar not reset after Edit Voxel Size
1 changed files with 1 additions and 0 deletions

View File

@ -403,6 +403,7 @@ static int voxel_size_edit_modal(bContext *C, wmOperator *op, const wmEvent *eve
mesh->remesh_voxel_size = cd->voxel_size;
MEM_freeN(op->customdata);
ED_region_tag_redraw(ar);
ED_workspace_status_text(C, NULL);
return OPERATOR_FINISHED;
}