From 239f0dbcd20a40642fc826ea6a90d2991f00febc Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Tue, 3 Dec 2013 22:42:58 +0100 Subject: Usual UI messages fixes & tweaks. --- source/blender/editors/space_view3d/view3d_edit.c | 2 +- source/blender/makesrna/intern/rna_userdef.c | 2 +- 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); -- cgit v1.2.3