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>2012-07-03 19:01:54 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2012-07-03 19:01:54 +0400
commit06b797033a01c28c5b5dc87d2d84cced4a097be0 (patch)
tree685561ab0506f8611f7f761911922a03cfa55545
parent2e3c474b2d6dbd856b276899930a5f942c49417e (diff)
Fix #32002: "Anim Player" button on header doesn't appear
-rw-r--r--source/blender/editors/space_sequencer/space_sequencer.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/editors/space_sequencer/space_sequencer.c b/source/blender/editors/space_sequencer/space_sequencer.c
index b8bf764fabc..cabc761161e 100644
--- a/source/blender/editors/space_sequencer/space_sequencer.c
+++ b/source/blender/editors/space_sequencer/space_sequencer.c
@@ -454,6 +454,10 @@ static void sequencer_main_area_listener(ARegion *ar, wmNotifier *wmn)
if (wmn->action == NA_RENAME)
ED_region_tag_redraw(ar);
break;
+ case NC_SCREEN:
+ if (ELEM(wmn->data, ND_SCREENCAST, ND_ANIMPLAY))
+ ED_region_tag_redraw(ar);
+ break;
}
}