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:
authorPhilipp Oeser <info@graphics-engineer.com>2020-01-13 17:29:09 +0300
committerPhilipp Oeser <info@graphics-engineer.com>2020-01-15 11:51:59 +0300
commitd68346eacfa8647b42882e2d588b9ef365c714c4 (patch)
treed37d791b19ca2c44b783adc1a2b8b396867328d1 /release/scripts/presets/keyconfig/keymap_data/industry_compatible_data.py
parent75100d0b943b8718afa937de0f2b2ba169a7f9d3 (diff)
Fix T72803: Texture Paint: Shortcut 'Shift + S' Does Not Save an Image
'Shift + S' is taken by toggeling Smooth Stroke in the keymap, should be 'Shift + Alt + S' (this also goes more in line with other editors, where Alt is added to the shortcut used by 'Save' to do 'Save As') Maniphest Tasks: T72803 Differential Revision: https://developer.blender.org/D6572
Diffstat (limited to 'release/scripts/presets/keyconfig/keymap_data/industry_compatible_data.py')
-rw-r--r--release/scripts/presets/keyconfig/keymap_data/industry_compatible_data.py2
1 files changed, 1 insertions, 1 deletions
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 4ca75ba75e0..01db6994f37 100644
--- a/release/scripts/presets/keyconfig/keymap_data/industry_compatible_data.py
+++ b/release/scripts/presets/keyconfig/keymap_data/industry_compatible_data.py
@@ -946,7 +946,7 @@ def km_image_generic(params):
("image.reload", {"type": 'R', "value": 'PRESS', "alt": True}, None),
("image.read_viewlayers", {"type": 'R', "value": 'PRESS', "ctrl": True}, None),
("image.save", {"type": 'S', "value": 'PRESS', "alt": True}, None),
- ("image.save_as", {"type": 'S', "value": 'PRESS', "shift": True}, None),
+ ("image.save_as", {"type": 'S', "value": 'PRESS', "shift": True, "alt": True}, None),
])
return keymap