[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [23736] trunk/blender: Wrong Tooltip for Continuous Grab.

Thomas Dinges dingto at gmx.de
Fri Oct 9 14:47:25 CEST 2009


Revision: 23736
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=23736
Author:   dingto
Date:     2009-10-09 14:47:25 +0200 (Fri, 09 Oct 2009)

Log Message:
-----------
Wrong Tooltip for Continuous Grab.

Modified Paths:
--------------
    trunk/blender/release/scripts/ui/space_userpref.py
    trunk/blender/source/blender/makesrna/intern/rna_userdef.c

Modified: trunk/blender/release/scripts/ui/space_userpref.py
===================================================================
--- trunk/blender/release/scripts/ui/space_userpref.py	2009-10-09 12:34:37 UTC (rev 23735)
+++ trunk/blender/release/scripts/ui/space_userpref.py	2009-10-09 12:47:25 UTC (rev 23736)
@@ -418,7 +418,7 @@
 		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)

Modified: trunk/blender/source/blender/makesrna/intern/rna_userdef.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_userdef.c	2009-10-09 12:34:37 UTC (rev 23735)
+++ trunk/blender/source/blender/makesrna/intern/rna_userdef.c	2009-10-09 12:47:25 UTC (rev 23736)
@@ -1657,7 +1657,7 @@
 
 	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);





More information about the Bf-blender-cvs mailing list