From 74dd22a228db0312049f0b23f1ce63a766202272 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 13 Oct 2010 01:30:42 +0000 Subject: re-enable fix from r32330 but without the alt key check because this can be used for input. --- source/blender/editors/space_text/text_ops.c | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'source/blender/editors/space_text/text_ops.c') diff --git a/source/blender/editors/space_text/text_ops.c b/source/blender/editors/space_text/text_ops.c index f6a4488966d..f8abe0f1900 100644 --- a/source/blender/editors/space_text/text_ops.c +++ b/source/blender/editors/space_text/text_ops.c @@ -2322,14 +2322,9 @@ static int insert_invoke(bContext *C, wmOperator *op, wmEvent *event) // if(!RNA_property_is_set(op->ptr, "text")) { /* always set from keymap XXX */ if(!RNA_string_length(op->ptr, "text")) { char str[2] = {event->ascii, '\0'}; - - /* XXX NOTE: Reverting this change from r32330, since it - * breaks input for cases where modifierkey is needed to - * create characters. - */ /* if alt/ctrl/super are pressed pass through */ - //if(event->alt || event->ctrl || event->oskey) - // return OPERATOR_PASS_THROUGH; + if(event->ctrl || event->oskey) + return OPERATOR_PASS_THROUGH; RNA_string_set(op->ptr, "text", str); } -- cgit v1.2.3