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:
authorSergey Sharybin <sergey.vfx@gmail.com>2014-06-06 16:15:18 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2014-06-06 16:18:05 +0400
commit089608c25ad06ed42b7cd8f95585685d22ebb6a0 (patch)
treeb88a29ac36f2c8a3a2d77e63fee49817853ade21 /source/blender/editors/space_buttons
parent607cd0e8bc867f18a17153bfb43355ac5aea7b86 (diff)
Fix T40519: Keyed parameter are not redrawed
The issue has been introduced in 1fabfc9 by changing notifiers being sent.
Diffstat (limited to 'source/blender/editors/space_buttons')
-rw-r--r--source/blender/editors/space_buttons/space_buttons.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_buttons/space_buttons.c b/source/blender/editors/space_buttons/space_buttons.c
index 1257dcb5e4c..1c3bad9757d 100644
--- a/source/blender/editors/space_buttons/space_buttons.c
+++ b/source/blender/editors/space_buttons/space_buttons.c
@@ -358,7 +358,7 @@ static void buttons_area_listener(bScreen *UNUSED(sc), ScrArea *sa, wmNotifier *
case NC_ANIMATION:
switch (wmn->data) {
case ND_KEYFRAME:
- if (wmn->action == NA_EDITED)
+ if (ELEM3(wmn->action, NA_EDITED, NA_ADDED, NA_REMOVED))
ED_area_tag_redraw(sa);
break;
}