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:
authorBastien Montagne <montagne29@wanadoo.fr>2013-12-04 01:42:58 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2013-12-04 01:42:58 +0400
commit239f0dbcd20a40642fc826ea6a90d2991f00febc (patch)
tree2cf2127f2788df3c798378fb1825904aaac62e6a
parent46eef60d93fd0d52ed4b94750f7a3248db5594ee (diff)
Usual UI messages fixes & tweaks.
-rw-r--r--source/blender/editors/space_view3d/view3d_edit.c2
-rw-r--r--source/blender/makesrna/intern/rna_userdef.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/space_view3d/view3d_edit.c b/source/blender/editors/space_view3d/view3d_edit.c
index ea335f7b43f..36c6df75461 100644
--- a/source/blender/editors/space_view3d/view3d_edit.c
+++ b/source/blender/editors/space_view3d/view3d_edit.c
@@ -3910,7 +3910,7 @@ void VIEW3D_OT_navigate(wmOperatorType *ot)
{
/* identifiers */
ot->name = "View Navigation";
- ot->description = "Interactively navigate around the scene. It uses the mode (walk/fly) preference";
+ ot->description = "Interactively navigate around the scene (uses the mode (walk/fly) preference)";
ot->idname = "VIEW3D_OT_navigate";
/* api callbacks */
diff --git a/source/blender/makesrna/intern/rna_userdef.c b/source/blender/makesrna/intern/rna_userdef.c
index a46d90ca8fd..b51e9a4367e 100644
--- a/source/blender/makesrna/intern/rna_userdef.c
+++ b/source/blender/makesrna/intern/rna_userdef.c
@@ -2917,7 +2917,7 @@ static void rna_def_userdef_walk_navigation(BlenderRNA *brna)
prop = RNA_def_property(srna, "use_gravity", PROP_BOOLEAN, PROP_BOOLEAN);
RNA_def_property_boolean_sdna(prop, NULL, "flag", USER_WALK_GRAVITY);
- RNA_def_property_ui_text(prop, "Gravity", "Walks with gravity, or free navigate");
+ RNA_def_property_ui_text(prop, "Gravity", "Walk with gravity, or free navigate");
prop = RNA_def_property(srna, "use_mouse_reverse", PROP_BOOLEAN, PROP_BOOLEAN);
RNA_def_property_boolean_sdna(prop, NULL, "flag", USER_WALK_MOUSE_REVERSE);