Changeset View
Changeset View
Standalone View
Standalone View
release/scripts/presets/keyconfig/keymap_data/blender_default.py
- This file is larger than 256 KB, so syntax highlighting is disabled by default.
| Show First 20 Lines • Show All 6,086 Lines • ▼ Show 20 Lines | def km_sequencer_editor_tool_select_box(params): | ||||
| ) | ) | ||||
| def km_sequencer_editor_tool_cut(params): | def km_sequencer_editor_tool_cut(params): | ||||
| return ( | return ( | ||||
| "Sequencer Tool: Cut", | "Sequencer Tool: Cut", | ||||
| {"space_type": 'SEQUENCE_EDITOR', "region_type": 'WINDOW'}, | {"space_type": 'SEQUENCE_EDITOR', "region_type": 'WINDOW'}, | ||||
| {"items":[ | {"items":[ | ||||
| ("sequencer.cut", {"type": 'LEFTMOUSE', "value": 'PRESS'}, | ("sequencer.cut", {"type": params.select_mouse, "value": 'PRESS'}, | ||||
| {"properties": [("type", 'SOFT'), ("side", 'NO_CHANGE'), ("use_cursor_position", True), ("ignore_selection", True)]}), | {"properties": [("type", 'SOFT'), ("side", 'NO_CHANGE'), ("use_cursor_position", True), ("ignore_selection", True)]}), | ||||
| ]}, | ]}, | ||||
| ) | ) | ||||
| # ------------------------------------------------------------------------------ | # ------------------------------------------------------------------------------ | ||||
| # Full Configuration | # Full Configuration | ||||
| ▲ Show 20 Lines • Show All 244 Lines • Show Last 20 Lines | |||||