Revert changes from main commits that were merged into blender-v4.1-release
The last good commit wasf57e4c5b98. After this one more fix was committed, this one is preserved as well:67bd678887.
This commit is contained in:
@@ -768,7 +768,7 @@ def km_window(params):
|
||||
("wm.search_menu", {"type": 'SPACE', "value": 'PRESS'}, None),
|
||||
)
|
||||
else:
|
||||
assert False, "unreachable"
|
||||
assert False
|
||||
|
||||
return keymap
|
||||
|
||||
@@ -3530,7 +3530,7 @@ def km_frames(params):
|
||||
("screen.animation_play", {"type": 'SPACE', "value": 'PRESS'}, None),
|
||||
)
|
||||
else:
|
||||
assert False, "unreachable"
|
||||
assert False
|
||||
|
||||
items.extend([
|
||||
("screen.animation_play", {"type": 'SPACE', "value": 'PRESS', "shift": True, "ctrl": True},
|
||||
@@ -4587,9 +4587,6 @@ def km_grease_pencil_paint_mode(_params):
|
||||
*_template_items_hide_reveal_actions("grease_pencil.layer_hide", "grease_pencil.layer_reveal"),
|
||||
|
||||
("paint.sample_color", {"type": 'X', "value": 'PRESS', "shift": True}, None),
|
||||
|
||||
# Isolate Layer
|
||||
("grease_pencil.layer_isolate", {"type": 'NUMPAD_ASTERIX', "value": 'PRESS'}, None),
|
||||
])
|
||||
|
||||
return keymap
|
||||
@@ -4616,11 +4613,6 @@ def km_grease_pencil_edit_mode(params):
|
||||
# Dissolve
|
||||
("grease_pencil.dissolve", {"type": 'X', "value": 'PRESS', "ctrl": True}, None),
|
||||
("grease_pencil.dissolve", {"type": 'DEL', "value": 'PRESS', "ctrl": True}, None),
|
||||
# Copy/paste
|
||||
("grease_pencil.copy", {"type": 'C', "value": 'PRESS', "ctrl": True}, None),
|
||||
("grease_pencil.paste", {"type": 'V', "value": 'PRESS', "ctrl": True}, None),
|
||||
("grease_pencil.paste", {"type": 'V', "value": 'PRESS', "shift": True, "ctrl": True},
|
||||
{"properties": [("paste_back", True)]}),
|
||||
# Separate
|
||||
("grease_pencil.separate", {"type": 'P', "value": 'PRESS'}, None),
|
||||
# Delete all active frames
|
||||
@@ -4668,14 +4660,6 @@ def km_grease_pencil_edit_mode(params):
|
||||
"ctrl": True, "repeat": True}, {"properties": [("direction", "DOWN")]}),
|
||||
("grease_pencil.reorder", {"type": 'DOWN_ARROW', "value": 'PRESS',
|
||||
"ctrl": True, "shift": True}, {"properties": [("direction", "BOTTOM")]}),
|
||||
|
||||
# Isolate Layer
|
||||
("grease_pencil.layer_isolate", {"type": 'NUMPAD_ASTERIX', "value": 'PRESS'}, None),
|
||||
|
||||
# Select mode
|
||||
("grease_pencil.set_selection_mode", {"type": 'ONE', "value": 'PRESS'}, {"properties": [("mode", 'POINT')]}),
|
||||
("grease_pencil.set_selection_mode", {"type": 'TWO', "value": 'PRESS'}, {"properties": [("mode", 'STROKE')]}),
|
||||
|
||||
])
|
||||
|
||||
return keymap
|
||||
@@ -5459,8 +5443,8 @@ def km_sculpt(params):
|
||||
{"properties": [("mode", 'TOGGLE')]}),
|
||||
("sculpt.face_set_change_visibility", {"type": 'H', "value": 'PRESS'},
|
||||
{"properties": [("mode", 'HIDE_ACTIVE')]}),
|
||||
("paint.hide_show_all", {"type": 'H', "value": 'PRESS', "alt": True},
|
||||
{"properties": [("action", "SHOW")]}),
|
||||
("paint.hide_show", {"type": 'H', "value": 'PRESS', "alt": True},
|
||||
{"properties": [("action", "SHOW"), ("area", "ALL")]}),
|
||||
("sculpt.face_set_edit", {"type": 'W', "value": 'PRESS', "ctrl": True},
|
||||
{"properties": [("mode", 'GROW')]}),
|
||||
("sculpt.face_set_edit", {"type": 'W', "value": 'PRESS', "ctrl": True, "alt": True},
|
||||
@@ -7886,23 +7870,8 @@ def km_3d_view_tool_sculpt_box_hide(params):
|
||||
{"properties": [("action", 'HIDE')]}),
|
||||
("paint.hide_show", {**params.tool_maybe_tweak_event, "ctrl": True},
|
||||
{"properties": [("action", 'SHOW')]}),
|
||||
("paint.hide_show_all", {"type": params.select_mouse, "value": params.select_mouse_value},
|
||||
{"properties": [("action", 'SHOW')]}),
|
||||
]},
|
||||
)
|
||||
|
||||
|
||||
def km_3d_view_tool_sculpt_lasso_hide(params):
|
||||
return (
|
||||
"3D View Tool: Sculpt, Lasso Hide",
|
||||
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
|
||||
{"items": [
|
||||
("paint.hide_show_lasso_gesture", params.tool_maybe_tweak_event,
|
||||
{"properties": [("action", 'HIDE')]}),
|
||||
("paint.hide_show_lasso_gesture", {**params.tool_maybe_tweak_event, "ctrl": True},
|
||||
{"properties": [("action", 'SHOW')]}),
|
||||
("paint.hide_show_all", {"type": params.select_mouse, "value": params.select_mouse_value},
|
||||
{"properties": [("action", 'SHOW')]}),
|
||||
("paint.hide_show", {"type": params.select_mouse, "value": params.select_mouse_value},
|
||||
{"properties": [("action", 'SHOW'), ("area", 'ALL')]}),
|
||||
]},
|
||||
)
|
||||
|
||||
@@ -8752,7 +8721,6 @@ def generate_keymaps(params=None):
|
||||
km_3d_view_tool_edit_curve_extrude_to_cursor(params),
|
||||
km_3d_view_tool_edit_curves_draw(params),
|
||||
km_3d_view_tool_sculpt_box_hide(params),
|
||||
km_3d_view_tool_sculpt_lasso_hide(params),
|
||||
km_3d_view_tool_sculpt_box_mask(params),
|
||||
km_3d_view_tool_sculpt_lasso_mask(params),
|
||||
km_3d_view_tool_sculpt_box_face_set(params),
|
||||
|
||||
@@ -3708,10 +3708,10 @@ def km_sculpt(params):
|
||||
{"properties": [("mode", 'HIDE_ACTIVE')]}),
|
||||
("sculpt.face_set_change_visibility", {"type": 'H', "value": 'PRESS', "shift": True},
|
||||
{"properties": [("mode", 'TOGGLE')]}),
|
||||
("paint.hide_show_masked", {"type": 'H', "value": 'PRESS', "ctrl": True},
|
||||
{"properties": [("action", 'HIDE')]}),
|
||||
("paint.hide_show_all", {"type": 'H', "value": 'PRESS', "alt": True},
|
||||
{"properties": [("action", 'SHOW')]}),
|
||||
("paint.hide_show", {"type": 'H', "value": 'PRESS', "ctrl": True},
|
||||
{"properties": [("action", 'HIDE'), ("area", 'MASKED')]}),
|
||||
("paint.hide_show", {"type": 'H', "value": 'PRESS', "alt": True},
|
||||
{"properties": [("action", 'SHOW'), ("area", 'ALL')]}),
|
||||
# Subdivision levels
|
||||
*_template_items_object_subdivision_set(),
|
||||
("object.subdivision_set", {"type": 'D', "value": 'PRESS', "repeat": True},
|
||||
|
||||
Reference in New Issue
Block a user