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:
authorCampbell Barton <ideasman42@gmail.com>2018-07-14 23:29:35 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-07-14 23:29:35 +0300
commitfc7c934cfc00bd58f5cb6114bc9ca1e2e07564e1 (patch)
treed6a07099a02f990726a684d80d72abffd61300d7 /source/blender/makesrna/intern/rna_userdef.c
parent5a716701e8c769a9d24c5c0ff5056bf9f5dc3917 (diff)
UI: rename manipulator to gizmo
This is a common, short, distinctive term often used for this purpose. Changes to internal API's still needed.
Diffstat (limited to 'source/blender/makesrna/intern/rna_userdef.c')
-rw-r--r--source/blender/makesrna/intern/rna_userdef.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/makesrna/intern/rna_userdef.c b/source/blender/makesrna/intern/rna_userdef.c
index 3d116482656..d8941e303d9 100644
--- a/source/blender/makesrna/intern/rna_userdef.c
+++ b/source/blender/makesrna/intern/rna_userdef.c
@@ -1205,31 +1205,31 @@ static void rna_def_userdef_theme_ui(BlenderRNA *brna)
prop = RNA_def_property(srna, "manipulator_hi", PROP_FLOAT, PROP_COLOR_GAMMA);
RNA_def_property_float_sdna(prop, NULL, "manipulator_hi");
RNA_def_property_array(prop, 3);
- RNA_def_property_ui_text(prop, "Manipulator Highlight", "");
+ RNA_def_property_ui_text(prop, "Gizmo Highlight", "");
RNA_def_property_update(prop, 0, "rna_userdef_update");
prop = RNA_def_property(srna, "manipulator_primary", PROP_FLOAT, PROP_COLOR_GAMMA);
RNA_def_property_float_sdna(prop, NULL, "manipulator_primary");
RNA_def_property_array(prop, 3);
- RNA_def_property_ui_text(prop, "Manipulator Primary", "");
+ RNA_def_property_ui_text(prop, "Gizmo Primary", "");
RNA_def_property_update(prop, 0, "rna_userdef_update");
prop = RNA_def_property(srna, "manipulator_secondary", PROP_FLOAT, PROP_COLOR_GAMMA);
RNA_def_property_float_sdna(prop, NULL, "manipulator_secondary");
RNA_def_property_array(prop, 3);
- RNA_def_property_ui_text(prop, "Manipulator Secondary", "");
+ RNA_def_property_ui_text(prop, "Gizmo Secondary", "");
RNA_def_property_update(prop, 0, "rna_userdef_update");
prop = RNA_def_property(srna, "manipulator_a", PROP_FLOAT, PROP_COLOR_GAMMA);
RNA_def_property_float_sdna(prop, NULL, "manipulator_a");
RNA_def_property_array(prop, 3);
- RNA_def_property_ui_text(prop, "Manipulator A", "");
+ RNA_def_property_ui_text(prop, "Gizmo A", "");
RNA_def_property_update(prop, 0, "rna_userdef_update");
prop = RNA_def_property(srna, "manipulator_b", PROP_FLOAT, PROP_COLOR_GAMMA);
RNA_def_property_float_sdna(prop, NULL, "manipulator_b");
RNA_def_property_array(prop, 3);
- RNA_def_property_ui_text(prop, "Manipulator B", "");
+ RNA_def_property_ui_text(prop, "Gizmo B", "");
RNA_def_property_update(prop, 0, "rna_userdef_update");
}