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.
This commit is contained in:
Brecht Van Lommel 2012-02-20 15:29:02 +00:00
parent 0b54887f71
commit b4201e643a

@ -899,6 +899,7 @@ class USERPREF_PT_input(Panel, InputKeyMapPanel):
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 @@ class USERPREF_PT_input(Panel, InputKeyMapPanel):
sub.label(text="NDOF Device:")
sub.prop(inputs, "ndof_sensitivity", text="NDOF Sensitivity")
col.prop(inputs, "tweak_threshold")
row.separator()
def draw(self, context):