Fix ruler access from search pop-up

D2831 by @1xundoredo
This commit is contained in:
Campbell Barton
2017-10-06 17:12:25 +11:00
parent c454d816a9
commit 327bb6e543

View File

@@ -1008,9 +1008,12 @@ static int view3d_ruler_modal(bContext *C, wmOperator *op, const wmEvent *event)
}
case RETKEY:
{
view3d_ruler_to_gpencil(C, ruler_info);
do_draw = true;
exit_code = OPERATOR_FINISHED;
/* Enter may be used to invoke from search. */
if (event->val == KM_PRESS) {
view3d_ruler_to_gpencil(C, ruler_info);
do_draw = true;
exit_code = OPERATOR_FINISHED;
}
break;
}
case DELKEY: