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:
authorMateusz Grzeliński <grzelinskimat@gmail.com>2020-08-13 18:38:12 +0300
committerMateusz Grzeliński <grzelinskimat@gmail.com>2020-08-13 18:38:12 +0300
commit3c82c0d6f8b873dbfc54b79df99354b8dff652f8 (patch)
treefd39eaa6f59f3fbd118a3410557a9a1778fcfd8a /release
parent5d26d6eac285d92a2aadf1ab4249e354430e93ee (diff)
Revert "Report filtering: use enum instead of separate bool properties"
This reverts commit 983bcc66 but preserves more error types
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_info.py10
1 files changed, 9 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/space_info.py b/release/scripts/startup/bl_ui/space_info.py
index 4de8adcab20..6a9dc984770 100644
--- a/release/scripts/startup/bl_ui/space_info.py
+++ b/release/scripts/startup/bl_ui/space_info.py
@@ -167,7 +167,15 @@ class INFO_PT_report_type_visibility(Panel):
if sinfo.view == 'REPORTS':
layout.label(text="Report Types Visibility")
col = layout.column(align=True)
- col.prop(sinfo, "report_mask")
+ col.prop(sinfo, "show_report_debug", text="Debug")
+ col.prop(sinfo, "show_report_info", text="Info")
+ col.prop(sinfo, "show_report_operator", text="Operator")
+ col.prop(sinfo, "show_report_property", text="Property")
+ col.prop(sinfo, "show_report_warning", text="Warning")
+ col.prop(sinfo, "show_report_error", text="Error")
+ col.prop(sinfo, "show_report_error_out_of_memory", text="Error")
+ col.prop(sinfo, "show_report_error_invalid_context", text="Error")
+ col.prop(sinfo, "show_report_error_invalid_input", text="Error")
layout.separator()
else:
layout.label(text="Filter Log Severity")