diff --git a/release/scripts/ui/space_userpref.py b/release/scripts/ui/space_userpref.py index 27c826b133b..7af8766e256 100644 --- a/release/scripts/ui/space_userpref.py +++ b/release/scripts/ui/space_userpref.py @@ -418,7 +418,7 @@ class USERPREF_PT_input(bpy.types.Panel): sub1 = sub.column() sub1.enabled = (view.select_mouse == 'RIGHT') sub1.itemR(view, "emulate_3_button_mouse") - sub.itemR(view, "continuous_mouse", text="Continuous Grab") + sub.itemR(view, "continuous_mouse") sub.itemL(text="Select With:") sub.row().itemR(view, "select_mouse", expand=True) diff --git a/source/blender/makesrna/intern/rna_userdef.c b/source/blender/makesrna/intern/rna_userdef.c index 3e3ed669e02..f8135f32eda 100644 --- a/source/blender/makesrna/intern/rna_userdef.c +++ b/source/blender/makesrna/intern/rna_userdef.c @@ -1657,7 +1657,7 @@ static void rna_def_userdef_view(BlenderRNA *brna) prop= RNA_def_property(srna, "continuous_mouse", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "uiflag", USER_CONTINUOUS_MOUSE); - RNA_def_property_ui_text(prop, "Contents Follow Opening Direction", "Otherwise menus, etc will always be top to bottom, left to right, no matter opening direction."); + RNA_def_property_ui_text(prop, "Continuous Grab", "Experimental option to allow moving the mouse outside the view (Linux only at the moment)"); prop= RNA_def_property(srna, "global_pivot", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "uiflag", USER_LOCKAROUND);