[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [44280] trunk/blender/release/scripts/ startup/bl_ui/space_userpref.py: Fix #30263: tweak threshold option in user preferences was incorrectly placed

Brecht Van Lommel brechtvanlommel at pandora.be
Mon Feb 20 16:29:10 CET 2012


Revision: 44280
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=44280
Author:   blendix
Date:     2012-02-20 15:29:02 +0000 (Mon, 20 Feb 2012)
Log Message:
-----------
Fix #30263: tweak threshold option in user preferences was incorrectly placed
under NDOF settings, but it's a mouse/tablet setting. Patch by Tobias Johansson.

Modified Paths:
--------------
    trunk/blender/release/scripts/startup/bl_ui/space_userpref.py

Modified: trunk/blender/release/scripts/startup/bl_ui/space_userpref.py
===================================================================
--- trunk/blender/release/scripts/startup/bl_ui/space_userpref.py	2012-02-20 14:19:45 UTC (rev 44279)
+++ trunk/blender/release/scripts/startup/bl_ui/space_userpref.py	2012-02-20 15:29:02 UTC (rev 44280)
@@ -899,6 +899,7 @@
         sub1.prop(inputs, "use_mouse_emulate_3_button")
         sub.prop(inputs, "use_mouse_continuous")
         sub.prop(inputs, "drag_threshold")
+        sub.prop(inputs, "tweak_threshold")
 
         sub.label(text="Select With:")
         sub.row().prop(inputs, "select_mouse", expand=True)
@@ -936,8 +937,6 @@
         sub.label(text="NDOF Device:")
         sub.prop(inputs, "ndof_sensitivity", text="NDOF Sensitivity")
 
-        col.prop(inputs, "tweak_threshold")
-
         row.separator()
 
     def draw(self, context):




More information about the Bf-blender-cvs mailing list