[Bf-blender-cvs] [9b24e5d54f6] temp-gpencil-automask: GPencil: Change Tooltips and Menu Text

Antonio Vazquez noreply at git.blender.org
Fri Oct 7 18:07:26 CEST 2022


Commit: 9b24e5d54f63a9dc2165e23b85352540c53f5a62
Author: Antonio Vazquez
Date:   Fri Oct 7 18:07:22 2022 +0200
Branches: temp-gpencil-automask
https://developer.blender.org/rB9b24e5d54f63a9dc2165e23b85352540c53f5a62

GPencil: Change Tooltips and Menu Text

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

M	release/scripts/startup/bl_ui/space_view3d.py
M	source/blender/makesrna/intern/rna_sculpt_paint.c

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

diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index 8e7d44d2cff..30d61c727cb 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -7473,8 +7473,9 @@ class VIEW3D_PT_gpencil_sculpt_automasking(Panel):
         col.prop(tool_settings.gpencil_sculpt, "use_automasking_stroke", text="Stroke")
         col.prop(tool_settings.gpencil_sculpt, "use_automasking_layer_stroke", text="Layer")
         col.prop(tool_settings.gpencil_sculpt, "use_automasking_material_stroke", text="Material")
-        col.prop(tool_settings.gpencil_sculpt, "use_automasking_layer_active", text="Layer Active")
-        col.prop(tool_settings.gpencil_sculpt, "use_automasking_material_active", text="Material Active")
+        col.separator()
+        col.prop(tool_settings.gpencil_sculpt, "use_automasking_layer_active", text="Active Layer")
+        col.prop(tool_settings.gpencil_sculpt, "use_automasking_material_active", text="Active Material")
 
 
 class VIEW3D_PT_gpencil_sculpt_context_menu(Panel):
diff --git a/source/blender/makesrna/intern/rna_sculpt_paint.c b/source/blender/makesrna/intern/rna_sculpt_paint.c
index 66639975224..23e20036d16 100644
--- a/source/blender/makesrna/intern/rna_sculpt_paint.c
+++ b/source/blender/makesrna/intern/rna_sculpt_paint.c
@@ -1652,33 +1652,31 @@ static void rna_def_gpencil_sculpt(BlenderRNA *brna)
 
   prop = RNA_def_property(srna, "use_automasking_stroke", PROP_BOOLEAN, PROP_NONE);
   RNA_def_property_boolean_sdna(prop, NULL, "flag", GP_SCULPT_SETT_FLAG_AUTOMASK_STROKE);
-  RNA_def_property_ui_text(prop, "Auto-Masking Strokes", "Mask strokes below brush cursor");
+  RNA_def_property_ui_text(prop, "Auto-Masking Strokes", "Affect only strokes below the cursor");
   RNA_def_property_clear_flag(prop, PROP_ANIMATABLE);
   RNA_def_property_update(prop, NC_SCENE | ND_TOOLSETTINGS, NULL);
 
   prop = RNA_def_property(srna, "use_automasking_layer_stroke", PROP_BOOLEAN, PROP_NONE);
   RNA_def_property_boolean_sdna(prop, NULL, "flag", GP_SCULPT_SETT_FLAG_AUTOMASK_LAYER_STROKE);
-  RNA_def_property_ui_text(
-      prop, "Auto-Masking Layer", "Mask strokes using layer of the stroke below cursor");
+  RNA_def_property_ui_text(prop, "Auto-Masking Layer", "Affect only strokes below the cursor");
   RNA_def_property_clear_flag(prop, PROP_ANIMATABLE);
   RNA_def_property_update(prop, NC_SCENE | ND_TOOLSETTINGS, NULL);
 
   prop = RNA_def_property(srna, "use_automasking_material_stroke", PROP_BOOLEAN, PROP_NONE);
   RNA_def_property_boolean_sdna(prop, NULL, "flag", GP_SCULPT_SETT_FLAG_AUTOMASK_MATERIAL_STROKE);
-  RNA_def_property_ui_text(
-      prop, "Auto-Masking Material", "Mask strokes using material of the stroke below cursor");
+  RNA_def_property_ui_text(prop, "Auto-Masking Material", "Affect only strokes below the cursor");
   RNA_def_property_clear_flag(prop, PROP_ANIMATABLE);
   RNA_def_property_update(prop, NC_SCENE | ND_TOOLSETTINGS, NULL);
 
   prop = RNA_def_property(srna, "use_automasking_layer_active", PROP_BOOLEAN, PROP_NONE);
   RNA_def_property_boolean_sdna(prop, NULL, "flag", GP_SCULPT_SETT_FLAG_AUTOMASK_LAYER_ACTIVE);
-  RNA_def_property_ui_text(prop, "Auto-Masking Layer", "Mask strokes using active layer");
+  RNA_def_property_ui_text(prop, "Auto-Masking Layer", "Affect only the Active Layer");
   RNA_def_property_clear_flag(prop, PROP_ANIMATABLE);
   RNA_def_property_update(prop, NC_SCENE | ND_TOOLSETTINGS, NULL);
 
   prop = RNA_def_property(srna, "use_automasking_material_active", PROP_BOOLEAN, PROP_NONE);
   RNA_def_property_boolean_sdna(prop, NULL, "flag", GP_SCULPT_SETT_FLAG_AUTOMASK_MATERIAL_ACTIVE);
-  RNA_def_property_ui_text(prop, "Auto-Masking Material", "Mask strokes using active material");
+  RNA_def_property_ui_text(prop, "Auto-Masking Material", "Affect only the Active Material");
   RNA_def_property_clear_flag(prop, PROP_ANIMATABLE);
   RNA_def_property_update(prop, NC_SCENE | ND_TOOLSETTINGS, NULL);



More information about the Bf-blender-cvs mailing list