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>2012-10-28 20:09:51 +0400
committerTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2012-10-28 20:09:51 +0400
commit5acd5d14970c829c2873623716a67beeb6da5278 (patch)
treef805a8fd6d5ae5ad4a6d9903f5c26b511a21c32b /source/blender/makesrna/intern/rna_linestyle.c
parentf252230216ce0b6e73ed69edb1c05a07ac1e373a (diff)
Improvements of Freestyle GUI controls - Part 1.
This commit makes a set of fixes and improvements based on the results of Freestyle branch review by Brecht. The discussion thread is: http://lists.blender.org/pipermail/bf-committers/2012-October/037927.html * The Layers panel and Freestyle-related panels in the Render tab of the Properties window were moved to the newly created Render Layers tab. The idea is to separate per render layer rendering options into a distinct Properties window tab, and use the existing Render tab to accommodate per scene rendering options. * The new Freestyle panel was added in the Render tab. The panel header contains a toggle button for globally enabling Freestyle, with the aim of making Freestyle easier to find. Those Freestyle options in the Post Processing panel were also moved to the new panel. * GUI code was updated so that UI controls will be greyed out (instead of being hidden) when Freestyle is disabled. Additional UI changes were also made to reduce space consumption. * The list of line sets was moved from the Freestyle panel to the Freestyle: Line Sets panel. * Old ray-casting algorithms were removed from the UI. Now only two algorithms (culled and non-culled cumulative visibility detection algorithms) are available, and the selection is done by the new "Culling" toggle button within the edge detection options.
Diffstat (limited to 'source/blender/makesrna/intern/rna_linestyle.c')
-rw-r--r--source/blender/makesrna/intern/rna_linestyle.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/blender/makesrna/intern/rna_linestyle.c b/source/blender/makesrna/intern/rna_linestyle.c
index abb715f2471..62d69ee8732 100644
--- a/source/blender/makesrna/intern/rna_linestyle.c
+++ b/source/blender/makesrna/intern/rna_linestyle.c
@@ -1038,37 +1038,37 @@ static void rna_def_linestyle(BlenderRNA *brna)
prop= RNA_def_property(srna, "dash1", PROP_INT, PROP_UNSIGNED);
RNA_def_property_int_sdna(prop, NULL, "dash1");
RNA_def_property_range(prop, 0, USHRT_MAX);
- RNA_def_property_ui_text(prop, "Dash #1", "Length of the 1st dash");
+ RNA_def_property_ui_text(prop, "Dash 1", "Length of the 1st dash");
RNA_def_property_update(prop, NC_LINESTYLE, NULL);
prop= RNA_def_property(srna, "gap1", PROP_INT, PROP_UNSIGNED);
RNA_def_property_int_sdna(prop, NULL, "gap1");
RNA_def_property_range(prop, 0, USHRT_MAX);
- RNA_def_property_ui_text(prop, "Gap #1", "Length of the 1st gap");
+ RNA_def_property_ui_text(prop, "Gap 1", "Length of the 1st gap");
RNA_def_property_update(prop, NC_LINESTYLE, NULL);
prop= RNA_def_property(srna, "dash2", PROP_INT, PROP_UNSIGNED);
RNA_def_property_int_sdna(prop, NULL, "dash2");
RNA_def_property_range(prop, 0, USHRT_MAX);
- RNA_def_property_ui_text(prop, "Dash #2", "Length of the 2nd dash");
+ RNA_def_property_ui_text(prop, "Dash 2", "Length of the 2nd dash");
RNA_def_property_update(prop, NC_LINESTYLE, NULL);
prop= RNA_def_property(srna, "gap2", PROP_INT, PROP_UNSIGNED);
RNA_def_property_int_sdna(prop, NULL, "gap2");
RNA_def_property_range(prop, 0, USHRT_MAX);
- RNA_def_property_ui_text(prop, "Gap #2", "Length of the 2nd gap");
+ RNA_def_property_ui_text(prop, "Gap 2", "Length of the 2nd gap");
RNA_def_property_update(prop, NC_LINESTYLE, NULL);
prop= RNA_def_property(srna, "dash3", PROP_INT, PROP_UNSIGNED);
RNA_def_property_int_sdna(prop, NULL, "dash3");
RNA_def_property_range(prop, 0, USHRT_MAX);
- RNA_def_property_ui_text(prop, "Dash #3", "Length of the 3rd dash");
+ RNA_def_property_ui_text(prop, "Dash 3", "Length of the 3rd dash");
RNA_def_property_update(prop, NC_LINESTYLE, NULL);
prop= RNA_def_property(srna, "gap3", PROP_INT, PROP_UNSIGNED);
RNA_def_property_int_sdna(prop, NULL, "gap3");
RNA_def_property_range(prop, 0, USHRT_MAX);
- RNA_def_property_ui_text(prop, "Gap #3", "Length of the 3rd gap");
+ RNA_def_property_ui_text(prop, "Gap 3", "Length of the 3rd gap");
RNA_def_property_update(prop, NC_LINESTYLE, NULL);
}