Fix T53550: E hotkey not working after the color-band picker commit

Related to D2886, the color-band picker was lacking a poll function.
This commit is contained in:
Ray molenkamp 2017-12-13 06:59:44 -07:00
parent 81f135677b
commit a621850224
Notes: blender-bot 2024-04-11 14:26:06 +02:00
Referenced by issue #53550, Can't assign 'E' as hotkey in Clip Editor anymore
1 changed files with 9 additions and 0 deletions

View File

@ -289,6 +289,13 @@ static int eyedropper_colorband_exec(bContext *C, wmOperator *op)
}
}
static int eyedropper_colorband_poll(bContext *C)
{
uiBut *but = UI_context_active_but_get(C);
return (but && but->type == UI_BTYPE_COLORBAND);
}
void UI_OT_eyedropper_colorband(wmOperatorType *ot)
{
/* identifiers */
@ -301,6 +308,7 @@ void UI_OT_eyedropper_colorband(wmOperatorType *ot)
ot->modal = eyedropper_colorband_modal;
ot->cancel = eyedropper_colorband_cancel;
ot->exec = eyedropper_colorband_exec;
ot->poll = eyedropper_colorband_poll;
/* flags */
ot->flag = OPTYPE_BLOCKING | OPTYPE_INTERNAL;
@ -320,6 +328,7 @@ void UI_OT_eyedropper_colorband_point(wmOperatorType *ot)
ot->modal = eyedropper_colorband_point_modal;
ot->cancel = eyedropper_colorband_cancel;
ot->exec = eyedropper_colorband_exec;
ot->poll = eyedropper_colorband_poll;
/* flags */
ot->flag = OPTYPE_BLOCKING | OPTYPE_INTERNAL;