[Bf-blender-cvs] [7ecb199] master: Fix stupid mistake

Antony Riakiotakis noreply at git.blender.org
Tue Jun 23 12:58:40 CEST 2015


Commit: 7ecb199d861fa34884c160bfa30f976d6909025e
Author: Antony Riakiotakis
Date:   Tue Jun 23 12:58:33 2015 +0200
Branches: master
https://developer.blender.org/rB7ecb199d861fa34884c160bfa30f976d6909025e

Fix stupid mistake

===================================================================

M	source/blender/windowmanager/intern/wm_operators.c

===================================================================

diff --git a/source/blender/windowmanager/intern/wm_operators.c b/source/blender/windowmanager/intern/wm_operators.c
index bcc49af..66dd851 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)




More information about the Bf-blender-cvs mailing list