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:
authorJoshua Leung <aligorith@gmail.com>2018-04-20 13:26:47 +0300
committerJoshua Leung <aligorith@gmail.com>2018-04-20 19:54:41 +0300
commit6d0c59b0116a8575e82b71e61e7c577923f3d2b7 (patch)
tree3ebe1ae8b1b4235ce95e1821ee040e711feec326
parentb210ead73bef8b1f96ed5186a3c8006ff82394dd (diff)
Dopesheet-Timeline: Make sure ND_SPACE_TIMELINE notifier gets handled by dopesheet
-rw-r--r--source/blender/editors/space_action/space_action.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/editors/space_action/space_action.c b/source/blender/editors/space_action/space_action.c
index 6b95f9c41c4..23e3751b358 100644
--- a/source/blender/editors/space_action/space_action.c
+++ b/source/blender/editors/space_action/space_action.c
@@ -600,6 +600,9 @@ static void action_listener(
case ND_SPACE_DOPESHEET:
ED_area_tag_redraw(sa);
break;
+ case ND_SPACE_TIME:
+ ED_area_tag_redraw(sa);
+ break;
case ND_SPACE_CHANGED:
saction->flag |= SACTION_TEMP_NEEDCHANSYNC;
ED_area_tag_refresh(sa);