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>2019-08-05 06:07:55 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-08-05 06:15:36 +0300
commit8b4f00269c91cff040792717122d959392141ad3 (patch)
tree106b96d26497e1e07887f507ebb8558cc83bf7d5 /source/blender/makesrna/intern/rna_userdef.c
parentcd02fe5d70506539800c50544dc75a9ae1c72b9d (diff)
UI: rename rotate to orbit for viewport sensitivity
Matches names of related preferences.
Diffstat (limited to 'source/blender/makesrna/intern/rna_userdef.c')
-rw-r--r--source/blender/makesrna/intern/rna_userdef.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/makesrna/intern/rna_userdef.c b/source/blender/makesrna/intern/rna_userdef.c
index e649a95fb06..bed06171cbf 100644
--- a/source/blender/makesrna/intern/rna_userdef.c
+++ b/source/blender/makesrna/intern/rna_userdef.c
@@ -5236,14 +5236,14 @@ static void rna_def_userdef_input(BlenderRNA *brna)
RNA_def_property_float_default(prop, DEG2RADF(0.4f));
RNA_def_property_ui_range(prop, DEG2RADF(0.001f), DEG2RADF(15.0f), 1.0f, 2);
RNA_def_property_ui_text(prop,
- "Rotate Sensitivity",
- "Rotation amount per-pixel to control how fast the viewport rotates");
+ "Orbit Sensitivity",
+ "Rotation amount per-pixel to control how fast the viewport orbits");
prop = RNA_def_property(srna, "view_rotate_sensitivity_trackball", PROP_FLOAT, PROP_FACTOR);
RNA_def_property_range(prop, 0.1f, 10.0f);
RNA_def_property_float_default(prop, 1.0f);
RNA_def_property_ui_range(prop, 0.1f, 2.0f, 0.01f, 2);
- RNA_def_property_ui_text(prop, "Rotate Sensitivity", "Scale trackball rotation sensitivity");
+ RNA_def_property_ui_text(prop, "Orbit Sensitivity", "Scale trackball orbit sensitivity");
/* tweak tablet & mouse preset */
prop = RNA_def_property(srna, "drag_threshold_mouse", PROP_INT, PROP_PIXEL);