[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [31652] trunk/blender/source/blender/ editors/animation/fmodifier_ui.c: Bugfix #23551: FMODIFIERS: Steps " Use End Frame" doesn't enable

Joshua Leung aligorith at gmail.com
Mon Aug 30 03:57:52 CEST 2010


Revision: 31652
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=31652
Author:   aligorith
Date:     2010-08-30 03:57:50 +0200 (Mon, 30 Aug 2010)

Log Message:
-----------
Bugfix #23551: FMODIFIERS: Steps "Use End Frame" doesn't enable

One old property name was missed during the renaming madness, so the 'active' poll always failed there.

Modified Paths:
--------------
    trunk/blender/source/blender/editors/animation/fmodifier_ui.c

Modified: trunk/blender/source/blender/editors/animation/fmodifier_ui.c
===================================================================
--- trunk/blender/source/blender/editors/animation/fmodifier_ui.c	2010-08-30 01:07:45 UTC (rev 31651)
+++ trunk/blender/source/blender/editors/animation/fmodifier_ui.c	2010-08-30 01:57:50 UTC (rev 31652)
@@ -583,7 +583,7 @@
 		uiItemR(col, &ptr, "use_frame_end", 0, NULL, 0);
 		
 		subcol = uiLayoutColumn(col, 1);
-		uiLayoutSetActive(subcol, RNA_boolean_get(&ptr, "use_end_frame"));
+		uiLayoutSetActive(subcol, RNA_boolean_get(&ptr, "use_frame_end"));
 			uiItemR(subcol, &ptr, "frame_end", 0, NULL, 0);
 }
 





More information about the Bf-blender-cvs mailing list