[Bf-blender-cvs] [8bf9eb98228] tracking_tools: MCE: Remove unused hotkey configs

Sebastian Koenig noreply at git.blender.org
Tue Jul 20 12:54:54 CEST 2021


Commit: 8bf9eb98228794a43b9619430a9d447f28e2c5f2
Author: Sebastian Koenig
Date:   Tue Jul 20 12:53:55 2021 +0200
Branches: tracking_tools
https://developer.blender.org/rB8bf9eb98228794a43b9619430a9d447f28e2c5f2

MCE: Remove unused hotkey configs

===================================================================

M	release/scripts/presets/keyconfig/keymap_data/blender_default.py
M	release/scripts/startup/bl_ui/space_toolsystem_toolbar.py

===================================================================

diff --git a/release/scripts/presets/keyconfig/keymap_data/blender_default.py b/release/scripts/presets/keyconfig/keymap_data/blender_default.py
index dc1918296d5..6c9d51ac758 100644
--- a/release/scripts/presets/keyconfig/keymap_data/blender_default.py
+++ b/release/scripts/presets/keyconfig/keymap_data/blender_default.py
@@ -2866,10 +2866,8 @@ def km_clip_editor(params):
          {"properties": [("mode", 'ADD')]}),
         ("clip.select_lasso", {"type": params.action_tweak, "value": 'ANY', "shift": True, "ctrl": True, "alt": True},
          {"properties": [("mode", 'SUB')]}),
-        # ("clip.add_marker_slide", {"type": 'LEFTMOUSE', "value": 'PRESS', "ctrl": True}, None),
         ("clip.delete_marker", {"type": 'X', "value": 'PRESS', "shift": True}, None),
         ("clip.delete_marker", {"type": 'DEL', "value": 'PRESS', "shift": True}, None),
-        # ("clip.slide_marker", {"type": 'LEFTMOUSE', "value": 'PRESS'}, None),
         ("clip.disable_markers", {"type": 'D', "value": 'PRESS', "shift": True},
          {"properties": [("action", 'TOGGLE')]}),
         ("clip.delete_track", {"type": 'X', "value": 'PRESS'}, None),
@@ -5974,10 +5972,6 @@ def km_clip_editor_tool_add_marker_tweak(params):
         "Clip Editor: Add Marker and Tweak",
         {"space_type": 'CLIP_EDITOR', "region_type": 'WINDOW'},
         {"items": [
-            ("clip.select", {"type": params.select_mouse, "value": 'PRESS'},
-             {"properties": [("extend", False), ("deselect_all", not params.legacy)]}),
-            ("clip.select", {"type": params.select_mouse, "value": 'PRESS', "shift": True},
-             {"properties": [("extend", True)]}),
             ("clip.add_marker_slide", {"type": 'LEFTMOUSE', "value": 'PRESS', "ctrl": True}, None),
             ("clip.slide_marker", {"type": 'LEFTMOUSE', "value": 'PRESS'}, None),
             ("clip.slide_plane_marker", {"type": 'LEFTMOUSE', "value": 'CLICK_DRAG'}, None),
diff --git a/release/scripts/startup/bl_ui/space_toolsystem_toolbar.py b/release/scripts/startup/bl_ui/space_toolsystem_toolbar.py
index 31179d159ad..616159161ea 100644
--- a/release/scripts/startup/bl_ui/space_toolsystem_toolbar.py
+++ b/release/scripts/startup/bl_ui/space_toolsystem_toolbar.py
@@ -2787,7 +2787,7 @@ class CLIP_PT_tools_active(ToolSelectPanelHelper, Panel):
     keymap_prefix = "Clip Editor Tool:"
 
     # Default group to use as a fallback.
-    tool_fallback_id = "builtin.box_select"
+    tool_fallback_id = "builtin.select_box"
 
     @classmethod
     def tools_from_context(cls, context, mode=None):



More information about the Bf-blender-cvs mailing list