Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTon Roosendaal <ton@blender.org>2010-01-31 21:06:50 +0300
committerTon Roosendaal <ton@blender.org>2010-01-31 21:06:50 +0300
commit04991f0ab75d95c85e8c9eeeea81d849058c999d (patch)
treec1e5122697b2900e5de8f4af3d8a1014cf487207 /source/blender/windowmanager
parent5cdec97dc51baffb47d8c06480727fba16588143 (diff)
2.5: quick fix to make 10-timer menu appear again. It's a debug tool, is
allowed to show menus in end. But, report API doesn't have a type for this yet... has been noted, and will be checked soon.
Diffstat (limited to 'source/blender/windowmanager')
-rw-r--r--source/blender/windowmanager/intern/wm_operators.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/windowmanager/intern/wm_operators.c b/source/blender/windowmanager/intern/wm_operators.c
index b6d5f5c7795..2f0a8084a82 100644
--- a/source/blender/windowmanager/intern/wm_operators.c
+++ b/source/blender/windowmanager/intern/wm_operators.c
@@ -2685,7 +2685,7 @@ static int redraw_timer_exec(bContext *C, wmOperator *op)
WM_cursor_wait(0);
- BKE_reportf(op->reports, RPT_INFO, "%d x %s: %.2f ms, average: %.4f", iter, infostr, time, time/iter);
+ BKE_reportf(op->reports, RPT_WARNING, "%d x %s: %.2f ms, average: %.4f", iter, infostr, time, time/iter);
return OPERATOR_FINISHED;
}