From c06350d8a79fa1bfeda0772d683cb91218ea3cb7 Mon Sep 17 00:00:00 2001 From: Yevgeny Makarov Date: Tue, 1 Oct 2019 20:32:14 +0200 Subject: [PATCH] UI: "text not found" message in text editor, change type from ERROR to WARNING Differential Revision: https://developer.blender.org/D5736 --- source/blender/editors/space_text/text_ops.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/editors/space_text/text_ops.c b/source/blender/editors/space_text/text_ops.c index e16f90240f7..f9557225b6b 100644 --- a/source/blender/editors/space_text/text_ops.c +++ b/source/blender/editors/space_text/text_ops.c @@ -3484,7 +3484,7 @@ static int text_find_and_replace(bContext *C, wmOperator *op, short mode) } else { if (!found) { - BKE_reportf(op->reports, RPT_ERROR, "Text not found: %s", st->findstr); + BKE_reportf(op->reports, RPT_WARNING, "Text not found: %s", st->findstr); } }