Fix T85363: Cmd + Tab shortcut overridden on macOS
Adds an exception so that the key-binding `control + Tab` does not get duplicated as `command + Tab` on macOS because this is a global system shortcut for the app switcher. The key-binding `command + Tab` was shown for the operators “Toggle Graph Editor“ and “Toggle Dope Sheet” in Dope Sheet and Graph Editor, but only `control + Tab` actually worked. Differential Revision: https://developer.blender.org/D10304
This commit is contained in:

committed by
Brecht Van Lommel

parent
3f90c11621
commit
bec08621d6
Submodule release/datafiles/locale updated: 877a343fed...6c693b5b0b
Submodule release/scripts/addons updated: a3fa40ec0b...dfeb905d62
@@ -49,6 +49,7 @@ def keyconfig_data_oskey_from_ctrl_for_macos(keyconfig_data_src):
|
||||
'W',
|
||||
'ACCENT_GRAVE',
|
||||
'PERIOD',
|
||||
'TAB',
|
||||
}):
|
||||
if (not item_event.get("alt")) and (not item_event.get("shift")):
|
||||
return False
|
||||
|
Submodule source/tools updated: d7d7e9d41f...dd131bc4f9
Reference in New Issue
Block a user