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:
authorAntony Riakiotakis <kalast@gmail.com>2015-06-23 13:58:33 +0300
committerAntony Riakiotakis <kalast@gmail.com>2015-06-23 13:58:33 +0300
commit7ecb199d861fa34884c160bfa30f976d6909025e (patch)
tree7116d85a86d6cbdc48a2c26a593bcfa0463f4370 /source/blender/windowmanager
parentcb5aecdae92b805ddc6d8b208449ffd3e058ad9a (diff)
Fix stupid mistake
Diffstat (limited to 'source/blender/windowmanager')
-rw-r--r--source/blender/windowmanager/intern/wm_operators.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/windowmanager/intern/wm_operators.c b/source/blender/windowmanager/intern/wm_operators.c
index bcc49aff547..66dd851fc91 100644
--- a/source/blender/windowmanager/intern/wm_operators.c
+++ b/source/blender/windowmanager/intern/wm_operators.c
@@ -4638,8 +4638,8 @@ static EnumPropertyItem redraw_timer_type_items[] = {
{eRTDrawWindowSwap, "DRAW_WIN_SWAP", 0, "Draw Window + Swap", "Draw Window and Swap"},
{eRTAnimationStep, "ANIM_STEP", 0, "Anim Step", "Animation Steps"},
{eRTAnimationPlay, "ANIM_PLAY", 0, "Anim Play", "Animation Playback"},
- {6, "UNDO", 0, "Undo/Redo", "Undo/Redo"},
- {eRTUndo, NULL, 0, NULL, NULL}
+ {eRTUndo, "UNDO", 0, "Undo/Redo", "Undo/Redo"},
+ {0, NULL, 0, NULL, NULL}
};
static int redraw_timer_exec(bContext *C, wmOperator *op)