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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2013-04-10 20:59:55 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2013-04-10 20:59:55 +0400
commitac224a64f408fcc8f90f7ea0124cbe4b9ef1e811 (patch)
tree17bf93532573b7e0cf64c3284264b5fce649a40b /source/blender/editors/space_time
parent367de678895e7815c26a5668506b8ae24624742c (diff)
Fix #34941: Space.draw_handler_add now supports PRE_VIEW and POST_VIEW callbacks
for more editors: timeline, graph, action, NLA, sequencer, image, clip.
Diffstat (limited to 'source/blender/editors/space_time')
-rw-r--r--source/blender/editors/space_time/space_time.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/source/blender/editors/space_time/space_time.c b/source/blender/editors/space_time/space_time.c
index e5bd9e62c74..0f798aa1893 100644
--- a/source/blender/editors/space_time/space_time.c
+++ b/source/blender/editors/space_time/space_time.c
@@ -487,6 +487,8 @@ static void time_main_area_draw(const bContext *C, ARegion *ar)
UI_view2d_grid_draw(v2d, grid, (V2D_VERTICAL_LINES | V2D_VERTICAL_AXIS));
UI_view2d_grid_free(grid);
+ ED_region_draw_cb_draw(C, ar, REGION_DRAW_PRE_VIEW);
+
/* start and end frame */
time_draw_sfra_efra(scene, v2d);
@@ -508,6 +510,10 @@ static void time_main_area_draw(const bContext *C, ARegion *ar)
/* caches */
time_draw_cache(stime, obact, scene);
+ /* callback */
+ UI_view2d_view_ortho(v2d);
+ ED_region_draw_cb_draw(C, ar, REGION_DRAW_POST_VIEW);
+
/* reset view matrix */
UI_view2d_view_restore(C);