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:
authorTon Roosendaal <ton@blender.org>2010-12-20 22:09:22 +0300
committerTon Roosendaal <ton@blender.org>2010-12-20 22:09:22 +0300
commit9f298c6e474f5428aa962faafc3283802b36b763 (patch)
tree4ed677fe31edd645fd61c6e2c3e681e221d8d67f
parent7e624b81a480293d435124d497f60f7ac2ec16a1 (diff)
Bugfix #25308
Border or other selection tools didn't redraw action editor, when option "only show selected" was set. Was missing area tagging.
-rw-r--r--source/blender/editors/space_action/space_action.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/editors/space_action/space_action.c b/source/blender/editors/space_action/space_action.c
index bb3b40fbf9b..678558e6450 100644
--- a/source/blender/editors/space_action/space_action.c
+++ b/source/blender/editors/space_action/space_action.c
@@ -425,6 +425,7 @@ static void action_refresh(const bContext *C, ScrArea *sa)
if (saction->flag & SACTION_TEMP_NEEDCHANSYNC) {
ANIM_sync_animchannels_to_data(C);
saction->flag &= ~SACTION_TEMP_NEEDCHANSYNC;
+ ED_area_tag_redraw(sa);
}
/* region updates? */