Merge branch 'blender-v4.1-release'
This commit is contained in:
@@ -2179,19 +2179,6 @@ static int graphkeys_select_key_handles_exec(bContext *C, wmOperator *op)
|
||||
return OPERATOR_FINISHED;
|
||||
}
|
||||
|
||||
static void graphkeys_select_key_handles_ui(bContext * /*C*/, wmOperator *op)
|
||||
{
|
||||
uiLayout *layout = op->layout;
|
||||
uiLayout *row;
|
||||
|
||||
row = uiLayoutRow(layout, false);
|
||||
uiItemR(row, op->ptr, "left_handle_action", UI_ITEM_NONE, nullptr, ICON_NONE);
|
||||
row = uiLayoutRow(layout, false);
|
||||
uiItemR(row, op->ptr, "right_handle_action", UI_ITEM_NONE, nullptr, ICON_NONE);
|
||||
row = uiLayoutRow(layout, false);
|
||||
uiItemR(row, op->ptr, "key_action", UI_ITEM_NONE, nullptr, ICON_NONE);
|
||||
}
|
||||
|
||||
void GRAPH_OT_select_key_handles(wmOperatorType *ot)
|
||||
{
|
||||
/* identifiers */
|
||||
@@ -2203,7 +2190,6 @@ void GRAPH_OT_select_key_handles(wmOperatorType *ot)
|
||||
/* callbacks */
|
||||
ot->poll = graphop_visible_keyframes_poll;
|
||||
ot->exec = graphkeys_select_key_handles_exec;
|
||||
ot->ui = graphkeys_select_key_handles_ui;
|
||||
|
||||
/* flags */
|
||||
ot->flag = OPTYPE_UNDO | OPTYPE_REGISTER;
|
||||
|
||||
Reference in New Issue
Block a user