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:
authorTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2014-04-24 18:42:05 +0400
committerTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2014-04-24 18:45:29 +0400
commitf6da871d9de1e3dff6b072ac1e55c9a3c12bc8a2 (patch)
tree2401c5e968d258a41d19a91d9e47f699c77d5010
parentece64c7ffdc82cdf2d129f73112470a2eca598b6 (diff)
Follow-up to the previous fix for T37452: More descriptive tooltips for freestyles settings
Made additional tool tips revisions suggested by a comment to T37452.
-rw-r--r--source/blender/makesrna/intern/rna_linestyle.c6
-rw-r--r--source/blender/makesrna/intern/rna_scene.c4
2 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/makesrna/intern/rna_linestyle.c b/source/blender/makesrna/intern/rna_linestyle.c
index 90040d012f3..6e6f0c3e208 100644
--- a/source/blender/makesrna/intern/rna_linestyle.c
+++ b/source/blender/makesrna/intern/rna_linestyle.c
@@ -953,7 +953,7 @@ static void rna_def_linestyle(BlenderRNA *brna)
prop = RNA_def_property(srna, "alpha", PROP_FLOAT, PROP_FACTOR);
RNA_def_property_float_sdna(prop, NULL, "alpha");
RNA_def_property_range(prop, 0.0f, 1.0f);
- RNA_def_property_ui_text(prop, "Alpha",
+ RNA_def_property_ui_text(prop, "Alpha Transparency",
"Base alpha transparency, possibly modified by alpha transparency modifiers");
RNA_def_property_update(prop, NC_LINESTYLE, NULL);
@@ -1001,7 +1001,7 @@ static void rna_def_linestyle(BlenderRNA *brna)
prop = RNA_def_property(srna, "chaining", PROP_ENUM, PROP_NONE);
RNA_def_property_enum_sdna(prop, NULL, "chaining");
RNA_def_property_enum_items(prop, chaining_items);
- RNA_def_property_ui_text(prop, "Chaining", "Select the way how feature edges are jointed to form chains");
+ RNA_def_property_ui_text(prop, "Chaining Method", "Select the way how feature edges are jointed to form chains");
RNA_def_property_update(prop, NC_LINESTYLE, NULL);
prop = RNA_def_property(srna, "rounds", PROP_INT, PROP_UNSIGNED);
@@ -1154,7 +1154,7 @@ static void rna_def_linestyle(BlenderRNA *brna)
prop = RNA_def_property(srna, "caps", PROP_ENUM, PROP_NONE);
RNA_def_property_enum_bitflag_sdna(prop, NULL, "caps");
RNA_def_property_enum_items(prop, cap_items);
- RNA_def_property_ui_text(prop, "Cap", "Select the shape of both ends of strokes");
+ RNA_def_property_ui_text(prop, "Caps", "Select the shape of both ends of strokes");
RNA_def_property_update(prop, NC_LINESTYLE, NULL);
prop = RNA_def_property(srna, "dash1", PROP_INT, PROP_UNSIGNED);
diff --git a/source/blender/makesrna/intern/rna_scene.c b/source/blender/makesrna/intern/rna_scene.c
index d755aa9ca86..c4e56dc0d0f 100644
--- a/source/blender/makesrna/intern/rna_scene.c
+++ b/source/blender/makesrna/intern/rna_scene.c
@@ -2654,9 +2654,9 @@ static void rna_def_freestyle_settings(BlenderRNA *brna)
};
static EnumPropertyItem face_mark_condition_items[] = {
- {0, "ONE", 0, "One Face", "Select feature edges if one of faces on the right and left has a face mark"},
+ {0, "ONE", 0, "One Face", "Select a feature edge if either of its adjacent faces is marked"},
{FREESTYLE_LINESET_FM_BOTH, "BOTH", 0, "Both Faces",
- "Select feature edges if both faces on the right and left faces have a face mark"},
+ "Select a feature edge if both of its adjacent faces are marked"},
{0, NULL, 0, NULL, NULL}
};