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>2019-11-14 08:51:16 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-11-14 08:55:31 +0300
commitf16f2f87624a6d417c1491b0253f1ab1642010e4 (patch)
tree3b299c319714bb1a45b9ee219f80ef94028b351e /release/scripts/modules
parent9bd0d8b5505ab51a48c9714f6a8dc555258d02af (diff)
Fix macOS using conflicting key binding Cmd-.
Used for toggle origins, conflicts on macOS, use Ctrl-. instead.
Diffstat (limited to 'release/scripts/modules')
-rw-r--r--release/scripts/modules/bl_keymap_utils/platform_helpers.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/release/scripts/modules/bl_keymap_utils/platform_helpers.py b/release/scripts/modules/bl_keymap_utils/platform_helpers.py
index e6506f11b71..064c8b1d171 100644
--- a/release/scripts/modules/bl_keymap_utils/platform_helpers.py
+++ b/release/scripts/modules/bl_keymap_utils/platform_helpers.py
@@ -45,6 +45,7 @@ def keyconfig_data_oskey_from_ctrl_for_macos(keyconfig_data_src):
'SPACE',
'W',
'ACCENT_GRAVE',
+ 'PERIOD',
}) and (
item_event.get("ctrl") and
(not item_event.get("alt")) and