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:
authorElia Sarti <vekoon@gmail.com>2010-02-21 23:27:13 +0300
committerElia Sarti <vekoon@gmail.com>2010-02-21 23:27:13 +0300
commit062d215b105d86b938f910f301cd85e62c116910 (patch)
treefb7f859473c243369261463cda1ff15eebc4c758 /source/blender/editors/space_time/space_time.c
parent3307d6d5097b12f9601a31c1d41b2fbab5228f9a (diff)
Fix #21214 Changing frame range on render panel doesn't update on timeline...
Was missing notifier Also made a description slightly more consistent
Diffstat (limited to 'source/blender/editors/space_time/space_time.c')
-rw-r--r--source/blender/editors/space_time/space_time.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/editors/space_time/space_time.c b/source/blender/editors/space_time/space_time.c
index b3c9cc6e31a..0dc4bff0ebf 100644
--- a/source/blender/editors/space_time/space_time.c
+++ b/source/blender/editors/space_time/space_time.c
@@ -318,6 +318,7 @@ static void time_header_area_listener(ARegion *ar, wmNotifier *wmn)
switch (wmn->data) {
case ND_FRAME:
case ND_KEYINGSET:
+ case ND_RENDER_OPTIONS:
ED_region_tag_redraw(ar);
break;
}