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:
authorMatt Ebb <matt@mke3.net>2010-06-18 09:18:46 +0400
committerMatt Ebb <matt@mke3.net>2010-06-18 09:18:46 +0400
commit0aef0d2538573cdb6eefae9c2fc10d80fe1d572e (patch)
tree0c247eeed1b2f8f5247db4f5100b0d13ea1e35f7 /source/blender/blenkernel/intern/report.c
parentbfd0810bebb5e26a89ced4c75a7e877600892537 (diff)
Raise the default report popup severity to errors only (not warnings).
All reports still get displayed in header.
Diffstat (limited to 'source/blender/blenkernel/intern/report.c')
-rw-r--r--source/blender/blenkernel/intern/report.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/report.c b/source/blender/blenkernel/intern/report.c
index d5990ce81ec..173c6c136f2 100644
--- a/source/blender/blenkernel/intern/report.c
+++ b/source/blender/blenkernel/intern/report.c
@@ -67,7 +67,7 @@ void BKE_reports_init(ReportList *reports, int flag)
memset(reports, 0, sizeof(ReportList));
reports->storelevel= RPT_INFO;
- reports->printlevel= RPT_INFO;
+ reports->printlevel= RPT_ERROR;
reports->flag= flag;
}