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:
authorMatt Ebb <matt@mke3.net>2010-01-07 13:49:16 +0300
committerMatt Ebb <matt@mke3.net>2010-01-07 13:49:16 +0300
commit26fcb7f9d2a7c3446490642b970c570e1aa425ee (patch)
tree5ccab667aca1516653cd615d6d2f5d6dbc61784d /source/blender/editors/space_buttons
parentf0a22ac2f9f2c854b67de52f04e836ae0332a686 (diff)
Fix [#19664] updating key in graph editor doesn't update value for
Shapekeyweight in realtime
Diffstat (limited to 'source/blender/editors/space_buttons')
-rw-r--r--source/blender/editors/space_buttons/space_buttons.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/source/blender/editors/space_buttons/space_buttons.c b/source/blender/editors/space_buttons/space_buttons.c
index 6677a064e11..f13cbcc80ab 100644
--- a/source/blender/editors/space_buttons/space_buttons.c
+++ b/source/blender/editors/space_buttons/space_buttons.c
@@ -351,6 +351,12 @@ static void buttons_area_listener(ScrArea *sa, wmNotifier *wmn)
if(wmn->action == NA_RENAME)
ED_area_tag_redraw(sa);
break;
+ case NC_ANIMATION:
+ switch(wmn->data) {
+ case ND_KEYFRAME_EDIT:
+ ED_area_tag_redraw(sa);
+ break;
+ }
}
if(wmn->data == ND_KEYS)