Wrong Tooltip for Continuous Grab.

This commit is contained in:
Thomas Dinges 2009-10-09 12:47:25 +00:00
parent 3d771d88d8
commit ae6c08ac5e
2 changed files with 2 additions and 2 deletions

@ -418,7 +418,7 @@ class USERPREF_PT_input(bpy.types.Panel):
sub1 = sub.column() sub1 = sub.column()
sub1.enabled = (view.select_mouse == 'RIGHT') sub1.enabled = (view.select_mouse == 'RIGHT')
sub1.itemR(view, "emulate_3_button_mouse") 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.itemL(text="Select With:")
sub.row().itemR(view, "select_mouse", expand=True) sub.row().itemR(view, "select_mouse", expand=True)

@ -1657,7 +1657,7 @@ static void rna_def_userdef_view(BlenderRNA *brna)
prop= RNA_def_property(srna, "continuous_mouse", PROP_BOOLEAN, PROP_NONE); 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_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); prop= RNA_def_property(srna, "global_pivot", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, NULL, "uiflag", USER_LOCKAROUND); RNA_def_property_boolean_sdna(prop, NULL, "uiflag", USER_LOCKAROUND);