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
path: root/source
diff options
context:
space:
mode:
authorAaron Carlisle <carlisle.b3d@gmail.com>2022-03-23 23:12:55 +0300
committerAaron Carlisle <carlisle.b3d@gmail.com>2022-03-23 23:13:09 +0300
commit300239b01f30890420df543d61ed13e60738f683 (patch)
tree3fb46451c8265027a27696aa98f8a6c161ce0184 /source
parent31bfa17a1f2b45401f265573c0a77a7366a9ed90 (diff)
UI: Correct error message wording
Fixes T96724
Diffstat (limited to 'source')
-rw-r--r--source/blender/editors/object/object_modifier.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/object/object_modifier.c b/source/blender/editors/object/object_modifier.c
index b0c8646dd04..7fedc2c6265 100644
--- a/source/blender/editors/object/object_modifier.c
+++ b/source/blender/editors/object/object_modifier.c
@@ -2219,7 +2219,7 @@ static int multires_unsubdivide_exec(bContext *C, wmOperator *op)
int new_levels = multiresModifier_rebuild_subdiv(depsgraph, object, mmd, 1, true);
if (new_levels == 0) {
- BKE_report(op->reports, RPT_ERROR, "Not valid subdivisions found to rebuild a lower level");
+ BKE_report(op->reports, RPT_ERROR, "No valid subdivisions found to rebuild a lower level");
return OPERATOR_CANCELLED;
}