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:
authorCampbell Barton <ideasman42@gmail.com>2014-05-08 13:54:04 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-05-08 13:54:04 +0400
commit105aa67cda63311c2986fe22167b54e05205b125 (patch)
tree0fab826c458b9e20b338044fdc593b54a9d971fd
parent64341540148f63fe324d3413196c32092c464fbc (diff)
Fix typo
-rw-r--r--source/blender/editors/interface/interface_anim.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/interface/interface_anim.c b/source/blender/editors/interface/interface_anim.c
index 167c6ac51c3..f0f08358013 100644
--- a/source/blender/editors/interface/interface_anim.c
+++ b/source/blender/editors/interface/interface_anim.c
@@ -125,7 +125,7 @@ bool ui_but_anim_expression_set(uiBut *but, const char *str)
/* clear invalid flags which may prevent this from working */
driver->flag &= ~DRIVER_FLAG_INVALID;
- fcu->flag & ~FCURVE_DISABLED;
+ fcu->flag &= ~FCURVE_DISABLED;
/* this notifier should update the Graph Editor and trigger depsgraph refresh? */
WM_event_add_notifier(but->block->evil_C, NC_ANIMATION | ND_KEYFRAME, NULL);