Usual UI messages fixes & tweaks.

This commit is contained in:
2013-12-03 22:42:58 +01:00
parent 46eef60d93
commit 239f0dbcd2
2 changed files with 2 additions and 2 deletions

View File

@@ -3910,7 +3910,7 @@ void VIEW3D_OT_navigate(wmOperatorType *ot)
{ {
/* identifiers */ /* identifiers */
ot->name = "View Navigation"; 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"; ot->idname = "VIEW3D_OT_navigate";
/* api callbacks */ /* api callbacks */

View File

@@ -2917,7 +2917,7 @@ static void rna_def_userdef_walk_navigation(BlenderRNA *brna)
prop = RNA_def_property(srna, "use_gravity", PROP_BOOLEAN, PROP_BOOLEAN); 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_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); prop = RNA_def_property(srna, "use_mouse_reverse", PROP_BOOLEAN, PROP_BOOLEAN);
RNA_def_property_boolean_sdna(prop, NULL, "flag", USER_WALK_MOUSE_REVERSE); RNA_def_property_boolean_sdna(prop, NULL, "flag", USER_WALK_MOUSE_REVERSE);