[Bf-blender-cvs] [fdb68e18471] blender-v2.82-release: Fix: UI: Spelling and Capitalization

Aaron Carlisle noreply at git.blender.org
Tue Feb 4 04:35:57 CET 2020


Commit: fdb68e184714f480c87c13c3c34480e9adfe4620
Author: Aaron Carlisle
Date:   Mon Feb 3 22:35:39 2020 -0500
Branches: blender-v2.82-release
https://developer.blender.org/rBfdb68e184714f480c87c13c3c34480e9adfe4620

Fix: UI: Spelling and Capitalization

===================================================================

M	release/scripts/startup/bl_ui/properties_physics_cloth.py
M	source/blender/makesrna/intern/rna_cloth.c

===================================================================

diff --git a/release/scripts/startup/bl_ui/properties_physics_cloth.py b/release/scripts/startup/bl_ui/properties_physics_cloth.py
index d9713cb8608..0bf667482c4 100644
--- a/release/scripts/startup/bl_ui/properties_physics_cloth.py
+++ b/release/scripts/startup/bl_ui/properties_physics_cloth.py
@@ -230,7 +230,7 @@ class PHYSICS_PT_cloth_pressure(PhysicButtonsPanel, Panel):
         col.prop(cloth, "uniform_pressure_force")
 
         col = flow.column()
-        col.prop(cloth, "use_pressure_volume", text="Custom volume")
+        col.prop(cloth, "use_pressure_volume", text="Custom Volume")
 
         col = flow.column()
         col.active = cloth.use_pressure_volume
diff --git a/source/blender/makesrna/intern/rna_cloth.c b/source/blender/makesrna/intern/rna_cloth.c
index c000e1059e6..59040df56c3 100644
--- a/source/blender/makesrna/intern/rna_cloth.c
+++ b/source/blender/makesrna/intern/rna_cloth.c
@@ -986,7 +986,7 @@ static void rna_def_cloth_sim_settings(BlenderRNA *brna)
   RNA_def_property_ui_text(
       prop,
       "Pressure",
-      "The uniform pressure that is constanty applied to the mesh. Can be negative");
+      "The uniform pressure that is constantly applied to the mesh. Can be negative");
   RNA_def_property_update(prop, 0, "rna_cloth_update");
 
   prop = RNA_def_property(srna, "target_volume", PROP_FLOAT, PROP_NONE);



More information about the Bf-blender-cvs mailing list