Anim Bugfixes:

* Add F-Modifiers (for Graph Editor) was using a buggy poll() method. Silly typo.
* Bone groups now get duplicated when duplicating an armature object
This commit is contained in:
2009-10-02 11:15:24 +00:00
parent fbb47e8604
commit 0a374e6679
2 changed files with 7 additions and 3 deletions

View File

@@ -292,7 +292,6 @@ int graphop_selected_fcurve_poll (bContext *C)
ListBase anim_data = {NULL, NULL};
ScrArea *sa= CTX_wm_area(C);
int filter, items;
short found = 0;
/* firstly, check if in Graph Editor */
// TODO: also check for region?
@@ -311,7 +310,7 @@ int graphop_selected_fcurve_poll (bContext *C)
/* cleanup and return findings */
BLI_freelistN(&anim_data);
return found;
return 1;
}
/* ************************************************************** */