forked from blender/blender
me-main #1
@ -3478,7 +3478,8 @@ def km_animation_channels(params):
|
|||||||
# Selection.
|
# Selection.
|
||||||
*_template_items_select_actions(params, "anim.channels_select_all"),
|
*_template_items_select_actions(params, "anim.channels_select_all"),
|
||||||
("anim.channels_select_box", {"type": 'B', "value": 'PRESS'}, None),
|
("anim.channels_select_box", {"type": 'B', "value": 'PRESS'}, None),
|
||||||
("anim.channels_select_box", {"type": 'LEFTMOUSE', "value": 'CLICK_DRAG'}, None),
|
("anim.channels_select_box", {"type": 'LEFTMOUSE', "value": 'CLICK_DRAG'},
|
||||||
|
{"properties": [("extend", False)]}),
|
||||||
("anim.channels_select_box", {"type": 'LEFTMOUSE', "value": 'CLICK_DRAG', "shift": True},
|
("anim.channels_select_box", {"type": 'LEFTMOUSE', "value": 'CLICK_DRAG', "shift": True},
|
||||||
{"properties": [("extend", True)]}),
|
{"properties": [("extend", True)]}),
|
||||||
("anim.channels_select_box", {"type": 'LEFTMOUSE', "value": 'CLICK_DRAG', "ctrl": True},
|
("anim.channels_select_box", {"type": 'LEFTMOUSE', "value": 'CLICK_DRAG', "ctrl": True},
|
||||||
|
@ -3499,7 +3499,8 @@ static int animchannels_mouseclick_invoke(bContext *C, wmOperator *op, const wmE
|
|||||||
/* set notifier that things have changed */
|
/* set notifier that things have changed */
|
||||||
WM_event_add_notifier(C, NC_ANIMATION | notifierFlags, NULL);
|
WM_event_add_notifier(C, NC_ANIMATION | notifierFlags, NULL);
|
||||||
|
|
||||||
return OPERATOR_FINISHED;
|
return WM_operator_flag_only_pass_through_on_press(OPERATOR_FINISHED | OPERATOR_PASS_THROUGH,
|
||||||
|
event);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void ANIM_OT_channels_click(wmOperatorType *ot)
|
static void ANIM_OT_channels_click(wmOperatorType *ot)
|
||||||
|
Loading…
Reference in New Issue
Block a user