Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2020-01-03 06:12:28 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-01-03 06:12:28 +0300
commitd8dc3101033dfc733fd5d1160660a770a35a01e4 (patch)
tree9567c36703616945e4ce1b6ff2d0e524aac4e4ba /release
parentb423b891274af6262565e28199c5e53b0cde4374 (diff)
Keymap: default to gizmo drag when LMB select is in use
Enable by default since it allows selection without gizmos getting in the way which is a common annoyance. Although this has the drawback that subtle adjustments with gizmos won't be detected until the drag threshold is reached.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/presets/keyconfig/blender.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/release/scripts/presets/keyconfig/blender.py b/release/scripts/presets/keyconfig/blender.py
index 596b17d734f..11cd76335f1 100644
--- a/release/scripts/presets/keyconfig/blender.py
+++ b/release/scripts/presets/keyconfig/blender.py
@@ -70,6 +70,7 @@ class Prefs(bpy.types.KeyConfigPreferences):
('DRAG', "Drag", "Drag allows click events to pass through to the tool, adding a small delay"),
),
description="Activation event for gizmos that support drag motion",
+ default='DRAG',
update=update_fn,
)