Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2019-11-18 14:42:10 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-11-18 14:43:30 +0300
commitd124545013fda15c69bad92e7daedb717c36a357 (patch)
treebae7376e028d86111d77ea6b61ddd2adafe54182 /source/blender/editors/sculpt_paint/sculpt_undo.c
parent8d4460b6c4b4406a3dc873b820dbe94d74437a46 (diff)
Fix wrong name for QuadriFlow undo step
Diffstat (limited to 'source/blender/editors/sculpt_paint/sculpt_undo.c')
-rw-r--r--source/blender/editors/sculpt_paint/sculpt_undo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/sculpt_paint/sculpt_undo.c b/source/blender/editors/sculpt_paint/sculpt_undo.c
index 052f2bd03a4..fec3bd88f0b 100644
--- a/source/blender/editors/sculpt_paint/sculpt_undo.c
+++ b/source/blender/editors/sculpt_paint/sculpt_undo.c
@@ -1279,9 +1279,9 @@ static void sculpt_undosys_step_free(UndoStep *us_p)
sculpt_undo_free_list(&us->data.nodes);
}
-void ED_sculpt_undo_geometry_begin(struct Object *ob)
+void ED_sculpt_undo_geometry_begin(struct Object *ob, const char *name)
{
- sculpt_undo_push_begin("voxel remesh");
+ sculpt_undo_push_begin(name);
sculpt_undo_push_node(ob, NULL, SCULPT_UNDO_GEOMETRY);
}