mirror of
https://github.com/blender/blender
synced 2026-09-26 16:15:47 +03:00
Fix modal key assignment for "Rotate Normals" in keymap versioning
Error in 78943edc5d
The key was not included in the appropriate condition block, leading to
an error.
This commit is contained in:
parent
523ea86b93
commit
c6db3f98bb
3 changed files with 2 additions and 2 deletions
|
|
@ -83,8 +83,8 @@ def keyconfig_update(keyconfig_data, keyconfig_version):
|
|||
elif item_modal == 'ROTATE':
|
||||
km_items.append(('TRACKBALL', item_event, None))
|
||||
|
||||
# The modal key for "Rotate Normals" also didn't exist until then.
|
||||
km_items.append(('ROTATE_NORMALS', {"type": 'N', "value": 'PRESS'}, None))
|
||||
# The modal key for "Rotate Normals" also didn't exist until then.
|
||||
km_items.append(('ROTATE_NORMALS', {"type": 'N', "value": 'PRESS'}, None))
|
||||
|
||||
if keyconfig_version <= (4, 0, 3):
|
||||
if not has_copy:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue