[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [36864] branches/soc-2011-pepper/source/ blender/editors/space_graph/graph_edit.c: Bugfix [#27453] Copy Paste fcurve modifers is broken

Joshua Leung aligorith at gmail.com
Tue May 24 14:24:05 CEST 2011


Revision: 36864
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=36864
Author:   aligorith
Date:     2011-05-24 12:24:05 +0000 (Tue, 24 May 2011)
Log Message:
-----------
Bugfix [#27453] Copy Paste fcurve modifers is broken

Wrong poll was getting used

Modified Paths:
--------------
    branches/soc-2011-pepper/source/blender/editors/space_graph/graph_edit.c

Modified: branches/soc-2011-pepper/source/blender/editors/space_graph/graph_edit.c
===================================================================
--- branches/soc-2011-pepper/source/blender/editors/space_graph/graph_edit.c	2011-05-24 12:20:02 UTC (rev 36863)
+++ branches/soc-2011-pepper/source/blender/editors/space_graph/graph_edit.c	2011-05-24 12:24:05 UTC (rev 36864)
@@ -2248,7 +2248,7 @@
 	
 	/* api callbacks */
 	ot->exec= graph_fmodifier_paste_exec;
-	ot->poll= graphop_editable_keyframes_poll;
+	ot->poll= graphop_active_fcurve_poll;
 	
 	/* flags */
 	ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO;




More information about the Bf-blender-cvs mailing list