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:
authorNicholas Bishop <nicholasbishop@gmail.com>2012-08-18 22:54:05 +0400
committerNicholas Bishop <nicholasbishop@gmail.com>2012-08-18 22:54:05 +0400
commit4301df952ebb308c5cba5599609dffba5278f84c (patch)
treec26487958daf1a0f28015466e8d9cb695e38a548 /source/blender
parenta5b5f5d3fbddf6ef8b42b22209bdb70eca0aeaef (diff)
Fix reversed names in modifier-remove error report
Diffstat (limited to 'source/blender')
-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 d3b099887cc..b82363abb4a 100644
--- a/source/blender/editors/object/object_modifier.c
+++ b/source/blender/editors/object/object_modifier.c
@@ -336,7 +336,7 @@ int ED_object_modifier_remove(ReportList *reports, Main *bmain, Scene *scene, Ob
ok = object_modifier_remove(bmain, ob, md, &sort_depsgraph);
if (!ok) {
- BKE_reportf(reports, RPT_ERROR, "Modifier '%s' not in object '%s'", ob->id.name, md->name);
+ BKE_reportf(reports, RPT_ERROR, "Modifier '%s' not in object '%s'", md->name, ob->id.name);
return 0;
}