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:
-rw-r--r--release/scripts/modules/bl_i18n_utils/utils_spell_check.py1
-rw-r--r--source/blender/editors/object/object_bake_api.c7
2 files changed, 5 insertions, 3 deletions
diff --git a/release/scripts/modules/bl_i18n_utils/utils_spell_check.py b/release/scripts/modules/bl_i18n_utils/utils_spell_check.py
index 4d326974e87..b22e1e93472 100644
--- a/release/scripts/modules/bl_i18n_utils/utils_spell_check.py
+++ b/release/scripts/modules/bl_i18n_utils/utils_spell_check.py
@@ -123,6 +123,7 @@ class SpellChecker:
"mixdown",
"multi",
"multifractal",
+ "multipaint",
"multires", "multiresolution",
"multisampling",
"multitexture",
diff --git a/source/blender/editors/object/object_bake_api.c b/source/blender/editors/object/object_bake_api.c
index bceda8ef620..1cf8614004f 100644
--- a/source/blender/editors/object/object_bake_api.c
+++ b/source/blender/editors/object/object_bake_api.c
@@ -450,11 +450,12 @@ static bool bake_pass_filter_check(ScenePassType pass_type, const int pass_filte
if ((pass_filter & R_BAKE_PASS_FILTER_AO) != 0) {
BKE_report(reports, RPT_ERROR,
- "Combined bake pass Ambient Occlusion contribution requires an enabled light pass. "
- "Bake the Ambient Occlusion pass type instead.");
+ "Combined bake pass Ambient Occlusion contribution requires an enabled light pass "
+ "(bake the Ambient Occlusion pass type instead)");
}
else {
- BKE_report(reports, RPT_ERROR, "Combined bake pass requires Emit, or a light pass with "
+ BKE_report(reports, RPT_ERROR,
+ "Combined bake pass requires Emit, or a light pass with "
"Direct or Indirect contributions enabled");
}