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 <campbell@blender.org>2022-04-06 12:08:10 +0300
committerCampbell Barton <campbell@blender.org>2022-04-06 12:08:10 +0300
commit8dd3387eb74566f6c52d5c83f22a8e89a908df2a (patch)
tree12badf8984c8d0ad082104e663c90374e08e110d /source/blender/editors/mesh
parent2d2baeaf04d481f284bc2f098fb6d7ee9268151f (diff)
Cleanup: spelling & poor wording in code & comments
Diffstat (limited to 'source/blender/editors/mesh')
-rw-r--r--source/blender/editors/mesh/editmesh_knife.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/mesh/editmesh_knife.c b/source/blender/editors/mesh/editmesh_knife.c
index 73716f6edba..ee40431c101 100644
--- a/source/blender/editors/mesh/editmesh_knife.c
+++ b/source/blender/editors/mesh/editmesh_knife.c
@@ -4399,7 +4399,7 @@ static int knifetool_modal(bContext *C, wmOperator *op, const wmEvent *event)
knifetool_exit(op);
ED_workspace_status_text(C, NULL);
- /* Exit early to prevent undo push for empty cuts. */
+ /* Cancel to prevent undo push for empty cuts. */
if (kcd->totkvert == 0) {
return OPERATOR_CANCELLED;
}