[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [47186] trunk/blender/source/blender/ makesrna/intern/rna_wm.c: Fix #31591: info header reports missing with custom key configuration due to

Brecht Van Lommel brechtvanlommel at pandora.be
Tue May 29 17:04:11 CEST 2012


Revision: 47186
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=47186
Author:   blendix
Date:     2012-05-29 15:04:11 +0000 (Tue, 29 May 2012)
Log Message:
-----------
Fix #31591: info header reports missing with custom key configuration due to
wrong keymap timer writing, some timer types were missing.

Modified Paths:
--------------
    trunk/blender/source/blender/makesrna/intern/rna_wm.c

Modified: trunk/blender/source/blender/makesrna/intern/rna_wm.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_wm.c	2012-05-29 15:02:21 UTC (rev 47185)
+++ trunk/blender/source/blender/makesrna/intern/rna_wm.c	2012-05-29 15:04:11 UTC (rev 47186)
@@ -115,6 +115,9 @@
 	{TIMER0, "TIMER0", 0, "Timer 0", ""},
 	{TIMER1, "TIMER1", 0, "Timer 1", ""},
 	{TIMER2, "TIMER2", 0, "Timer 2", ""},
+	{TIMERJOBS, "TIMER_JOBS", 0, "Timer Jobs", ""},
+	{TIMERAUTOSAVE, "TIMER_AUTOSAVE", 0, "Timer Autosave", ""},
+	{TIMERREPORT, "TIMER_REPORT", 0, "Timer Report", ""},
 	{0, NULL, 0, NULL, NULL}
 };
 
@@ -317,6 +320,9 @@
 	{TIMER0, "TIMER0", 0, "Timer 0", ""},
 	{TIMER1, "TIMER1", 0, "Timer 1", ""},
 	{TIMER2, "TIMER2", 0, "Timer 2", ""},
+	{TIMERJOBS, "TIMER_JOBS", 0, "Timer Jobs", ""},
+	{TIMERAUTOSAVE, "TIMER_AUTOSAVE", 0, "Timer Autosave", ""},
+	{TIMERREPORT, "TIMER_REPORT", 0, "Timer Report", ""},
 	{0, "", 0, NULL, NULL},
 	{NDOF_MOTION, "NDOF_MOTION", 0, "NDOF Motion", ""},
 	/* buttons on all 3dconnexion devices */




More information about the Bf-blender-cvs mailing list