[Bf-blender-cvs] [80083ac7736] master: Fix T89310: Industry Compatible keymap not working

Hans Goudey noreply at git.blender.org
Mon Jun 21 01:52:08 CEST 2021


Commit: 80083ac7736fb27b82c67f9c37cfc9bec43086bc
Author: Hans Goudey
Date:   Sun Jun 20 18:52:01 2021 -0500
Branches: master
https://developer.blender.org/rB80083ac7736fb27b82c67f9c37cfc9bec43086bc

Fix T89310: Industry Compatible keymap not working

Caused by improper testing on my part, assuming a helper function
existed in the industry compatible keymap file, and also assuming it
also used the N and T keys for the left and right side-regions.

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

M	release/scripts/presets/keyconfig/keymap_data/industry_compatible_data.py

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

diff --git a/release/scripts/presets/keyconfig/keymap_data/industry_compatible_data.py b/release/scripts/presets/keyconfig/keymap_data/industry_compatible_data.py
index 237b7237c27..e56783fcc21 100644
--- a/release/scripts/presets/keyconfig/keymap_data/industry_compatible_data.py
+++ b/release/scripts/presets/keyconfig/keymap_data/industry_compatible_data.py
@@ -2144,23 +2144,6 @@ def km_clip_dopesheet_editor(_params):
     return keymap
 
 
-def km_spreadsheet_generic(_params):
-    items = []
-    keymap = (
-        "Spreadsheet Generic",
-        {"space_type": 'SPREADSHEET', "region_type": 'WINDOW'},
-        {"items": items},
-    )
-
-    items.extend([
-        *_template_space_region_type_toggle(
-            sidebar_key={"type": 'N', "value": 'PRESS'},
-        ),
-    ])
-
-    return keymap
-
-
 # ------------------------------------------------------------------------------
 # Animation
 
@@ -4084,7 +4067,6 @@ def generate_keymaps_impl(params=None):
         km_image(params),
         km_node_generic(params),
         km_node_editor(params),
-        km_spreadsheet_generic(params),
         km_info(params),
         km_file_browser(params),
         km_file_browser_main(params),



More information about the Bf-blender-cvs mailing list