Blender Git Loki
Git Commits -> Revision 21d112c
June 3, 2010, 07:27 (GMT) |
Reworked the non-blocking reports display in the info header: * Now it displays the last report from the global list, not just from operators * Rather than disappearing when a new operator is run, it stays until it times out or a new report is added * Fun animated transitions ;) http://mke3.net/blender/devel/2.5/reports_header.mov Now need to investigate report usage with popups. Ideally we can have most reports non-blocking, so they're less intrusive, only popping up for dire errors. Problem is many things in Blender right now are marked as RPT_ERROR when probably RPT_WARNING is more appropriate. Should probably keep RPT_ERROR for things that demand immediate attention. |
Commit Details:
Full Hash: 21d112c36f661f3ce8648f4eadfe1325929e9184
SVN Revision: 29174
Parent Commit: 3b6aa5b
Lines Changed: +261, -93
14 Modified Paths:
/release/scripts/ui/space_info.py (+3, -4) (Diff)
/source/blender/blenkernel/BKE_report.h (+2, -0) (Diff)
/source/blender/blenkernel/intern/report.c (+12, -0) (Diff)
/source/blender/editors/include/UI_interface.h (+1, -1) (Diff)
/source/blender/editors/interface/interface_templates.c (+48, -35) (Diff)
/source/blender/editors/interface/interface_widgets.c (+14, -0) (Diff)
/source/blender/editors/mesh/editmesh_tools.c (+5, -9) (Diff)
/source/blender/editors/space_info/info_intern.h (+2, -0) (Diff)
/source/blender/editors/space_info/info_ops.c (+98, -0) (Diff)
/source/blender/editors/space_info/space_info.c (+4, -0) (Diff)
/source/blender/makesdna/DNA_windowmanager_types.h (+9, -0) (Diff)
/source/blender/makesrna/intern/rna_ui_api.c (+0, -4) (Diff)
/source/blender/windowmanager/intern/wm.c (+8, -8) (Diff)
/source/blender/windowmanager/intern/wm_event_system.c (+55, -32) (Diff)
/source/blender/blenkernel/BKE_report.h (+2, -0) (Diff)
/source/blender/blenkernel/intern/report.c (+12, -0) (Diff)
/source/blender/editors/include/UI_interface.h (+1, -1) (Diff)
/source/blender/editors/interface/interface_templates.c (+48, -35) (Diff)
/source/blender/editors/interface/interface_widgets.c (+14, -0) (Diff)
/source/blender/editors/mesh/editmesh_tools.c (+5, -9) (Diff)
/source/blender/editors/space_info/info_intern.h (+2, -0) (Diff)
/source/blender/editors/space_info/info_ops.c (+98, -0) (Diff)
/source/blender/editors/space_info/space_info.c (+4, -0) (Diff)
/source/blender/makesdna/DNA_windowmanager_types.h (+9, -0) (Diff)
/source/blender/makesrna/intern/rna_ui_api.c (+0, -4) (Diff)
/source/blender/windowmanager/intern/wm.c (+8, -8) (Diff)
/source/blender/windowmanager/intern/wm_event_system.c (+55, -32) (Diff)