From dcec863b2f2fce7fc5caa138ad3816c88e2aa2a3 Mon Sep 17 00:00:00 2001 From: William Reynish Date: Tue, 21 May 2019 11:28:46 +0200 Subject: Keymap: Add additional scrubbing affordance (Alt-LMB) This adds an additional way to scrub the playhead, by holding Alt and dragging with the left mouse button, in addition to Shift-RMB. It's easier to do this, especially with pen input. The other method is still kept, in case you have Emulate 3 Button Mouse enabled, in which case Alt-LMB pans the view And of course, you can still scrub simply by dragging the playhead, without holding any modifier keys. Right click select is unaffected. --- release/scripts/presets/keyconfig/keymap_data/blender_default.py | 1 + 1 file changed, 1 insertion(+) diff --git a/release/scripts/presets/keyconfig/keymap_data/blender_default.py b/release/scripts/presets/keyconfig/keymap_data/blender_default.py index a3da87356cb..bf4eeaa2d01 100644 --- a/release/scripts/presets/keyconfig/keymap_data/blender_default.py +++ b/release/scripts/presets/keyconfig/keymap_data/blender_default.py @@ -2783,6 +2783,7 @@ def km_animation(params): if params.select_mouse == 'LEFTMOUSE' and not params.legacy: items.extend([ ("anim.change_frame", {"type": 'RIGHTMOUSE', "value": 'PRESS', "shift": True}, None), + ("anim.change_frame", {"type": 'LEFTMOUSE', "value": 'PRESS', "alt": True}, None), ]) else: items.extend([ -- cgit v1.2.3