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:
12
scripts/presets/text_editor/visual_studio_code.py
Normal file
12
scripts/presets/text_editor/visual_studio_code.py
Normal file
@@ -0,0 +1,12 @@
|
||||
import bpy
|
||||
import platform
|
||||
|
||||
filepaths = bpy.context.preferences.filepaths
|
||||
|
||||
filepaths.text_editor_args = "-g $filepath:$line:$column"
|
||||
|
||||
match platform.system():
|
||||
case "Windows":
|
||||
filepaths.text_editor = "code.cmd"
|
||||
case _:
|
||||
filepaths.text_editor = "code"
|
||||
Reference in New Issue
Block a user