Blender Git Commit Log
Git Commits -> Revision 3116062
Revision 3116062 by Brecht Van Lommel (master) July 12, 2009, 02:06 (GMT) |
2.5: Couple of small fun features * Text window font size now supports full range 8-32, instead of just 12 and 15. I added BLF_fixed_width to get the character width of a fixed size font. * Buttons do undo push on change again. * Animated/Keyframe/Driver colors are now themable, with blend value to blend with original color. Set this to 0.5 now to give colors less constrast. * Fix tooltip popping up with RMB menu open, and missing redraw. * Autokeyframe now works for buttons. * Driver expressions can be edited in place in a button now. (still some refresh issues). * Also made python driver default for the Add Driver function in the RMB button. This way you don't have to open a Graph editor if you just want to type an expression. Also, the default expression then is the current value. * Tooltips now show some extra info, not sure what is good to have, but currently I added: * Shortcut key for operator buttons. * Python struct & property name for RNA buttons. * Expression for driven values. * Value for text/search/pointer buttons. |
Commit Details:
Full Hash: 3116062a828e24ed2e91c219ab338a38030f2f42
SVN Revision: 21540
Parent Commit: 8b9bb47
Lines Changed: +520, -143
25 Modified Paths:
/source/blender/blenfont/BLF_api.h (+7, -0) (Diff)
/source/blender/blenfont/intern/blf.c (+10, -0) (Diff)
/source/blender/blenfont/intern/blf_font.c (+21, -0) (Diff)
/source/blender/blenfont/intern/blf_internal.h (+1, -0) (Diff)
/source/blender/editors/animation/drivers.c (+35, -2) (Diff)
/source/blender/editors/animation/keyframing.c (+16, -0) (Diff)
/source/blender/editors/include/ED_keyframing.h (+5, -1) (Diff)
/source/blender/editors/interface/interface.c (+8, -1) (Diff)
/source/blender/editors/interface/interface_anim.c (+115, -26) (Diff)
/source/blender/editors/interface/interface_handlers.c (+66, -16) (Diff)
/source/blender/editors/interface/interface_intern.h (+3, -0) (Diff)
/source/blender/editors/interface/interface_regions.c (+69, -8) (Diff)
/source/blender/editors/interface/interface_widgets.c (+27, -20) (Diff)
/source/blender/editors/space_buttons/space_buttons.c (+3, -0) (Diff)
/source/blender/editors/space_outliner/outliner.c (+1, -1) (Diff)
/source/blender/editors/space_text/text_draw.c (+42, -36) (Diff)
/source/blender/editors/space_text/text_intern.h (+1, -0) (Diff)
/source/blender/editors/space_text/text_ops.c (+14, -2) (Diff)
/source/blender/editors/space_text/text_python.c (+5, -3) (Diff)
/source/blender/editors/transform/transform.h (+0, -1) (Diff)
/source/blender/editors/transform/transform_conversions.c (+4, -17) (Diff)
/source/blender/makesdna/DNA_space_types.h (+2, -1) (Diff)
/source/blender/makesdna/DNA_userdef_types.h (+12, -0) (Diff)
/source/blender/makesrna/intern/rna_space.c (+3, -8) (Diff)
/source/blender/makesrna/intern/rna_userdef.c (+50, -0) (Diff)
/source/blender/blenfont/intern/blf.c (+10, -0) (Diff)
/source/blender/blenfont/intern/blf_font.c (+21, -0) (Diff)
/source/blender/blenfont/intern/blf_internal.h (+1, -0) (Diff)
/source/blender/editors/animation/drivers.c (+35, -2) (Diff)
/source/blender/editors/animation/keyframing.c (+16, -0) (Diff)
/source/blender/editors/include/ED_keyframing.h (+5, -1) (Diff)
/source/blender/editors/interface/interface.c (+8, -1) (Diff)
/source/blender/editors/interface/interface_anim.c (+115, -26) (Diff)
/source/blender/editors/interface/interface_handlers.c (+66, -16) (Diff)
/source/blender/editors/interface/interface_intern.h (+3, -0) (Diff)
/source/blender/editors/interface/interface_regions.c (+69, -8) (Diff)
/source/blender/editors/interface/interface_widgets.c (+27, -20) (Diff)
/source/blender/editors/space_buttons/space_buttons.c (+3, -0) (Diff)
/source/blender/editors/space_outliner/outliner.c (+1, -1) (Diff)
/source/blender/editors/space_text/text_draw.c (+42, -36) (Diff)
/source/blender/editors/space_text/text_intern.h (+1, -0) (Diff)
/source/blender/editors/space_text/text_ops.c (+14, -2) (Diff)
/source/blender/editors/space_text/text_python.c (+5, -3) (Diff)
/source/blender/editors/transform/transform.h (+0, -1) (Diff)
/source/blender/editors/transform/transform_conversions.c (+4, -17) (Diff)
/source/blender/makesdna/DNA_space_types.h (+2, -1) (Diff)
/source/blender/makesdna/DNA_userdef_types.h (+12, -0) (Diff)
/source/blender/makesrna/intern/rna_space.c (+3, -8) (Diff)
/source/blender/makesrna/intern/rna_userdef.c (+50, -0) (Diff)