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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2012-05-29 19:04:11 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2012-05-29 19:04:11 +0400
commit3d55cf64cbbe7c3cffc5f303d605ced1de77120c (patch)
tree1620c422d5f187b329a5c8af7e8d50f5b7ce7253 /source/blender/makesrna/intern/rna_wm.c
parentfeb3dc926a74b51789b100ac9532dc196a4cd9ae (diff)
Fix #31591: info header reports missing with custom key configuration due to
wrong keymap timer writing, some timer types were missing.
Diffstat (limited to 'source/blender/makesrna/intern/rna_wm.c')
-rw-r--r--source/blender/makesrna/intern/rna_wm.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/source/blender/makesrna/intern/rna_wm.c b/source/blender/makesrna/intern/rna_wm.c
index 194f48bd32a..8c6a2809ef8 100644
--- a/source/blender/makesrna/intern/rna_wm.c
+++ b/source/blender/makesrna/intern/rna_wm.c
@@ -115,6 +115,9 @@ EnumPropertyItem event_timer_type_items[] = {
{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 @@ EnumPropertyItem event_type_items[] = {
{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 */