From d5600a43f69f2b6d2cd1b9404dfe77b9ebe0bb3c Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Wed, 21 Mar 2012 15:51:15 +0000 Subject: Quick fix to broken text editor/console from r45051. Note: not completely sure this is the way to go, but at least it works (and is easy to revert in case there is better solution ;) ). --- source/blender/editors/space_text/text_ops.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'source/blender/editors/space_text') diff --git a/source/blender/editors/space_text/text_ops.c b/source/blender/editors/space_text/text_ops.c index ba7c1f556b2..9a64948c05c 100644 --- a/source/blender/editors/space_text/text_ops.c +++ b/source/blender/editors/space_text/text_ops.c @@ -2875,6 +2875,8 @@ static int text_insert_invoke(bContext *C, wmOperator *op, wmEvent *event) void TEXT_OT_insert(wmOperatorType *ot) { + PropertyRNA *prop; + /* identifiers */ ot->name= "Insert"; ot->idname= "TEXT_OT_insert"; @@ -2886,7 +2888,8 @@ void TEXT_OT_insert(wmOperatorType *ot) ot->poll= text_edit_poll; /* properties */ - RNA_def_string(ot->srna, "text", "", 0, "Text", "Text to insert at the cursor position"); + prop = RNA_def_string(ot->srna, "text", "", 0, "Text", "Text to insert at the cursor position"); + RNA_def_property_flag(prop, PROP_SKIP_SAVE); } /******************* find operator *********************/ -- cgit v1.2.3