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>2008-10-08 22:07:56 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2008-10-08 22:07:56 +0400
commitb589489ef8d56976165fb88ebf7b59dbc417d443 (patch)
tree4f7f157822822a28c361cc1ebe3c2f97e90e3aa0 /source/blender/editors/space_time
parente6ba0900b534e0e6503df67964acbb09f8ae4844 (diff)
2.5 Branch: use themes for drawing the time space, and make
view2d grid code a bit nicer.
Diffstat (limited to 'source/blender/editors/space_time')
-rw-r--r--source/blender/editors/space_time/space_time.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/source/blender/editors/space_time/space_time.c b/source/blender/editors/space_time/space_time.c
index f6557c5f14f..1d35e7a57e0 100644
--- a/source/blender/editors/space_time/space_time.c
+++ b/source/blender/editors/space_time/space_time.c
@@ -114,6 +114,7 @@ static void time_main_area_draw(const bContext *C, ARegion *ar)
{
/* draw entirely, windowsize changes should be handled here */
SpaceTime *stime= C->area->spacedata.first;
+ View2DGrid *grid;
float col[3];
int unit, winx, winy;
@@ -122,9 +123,6 @@ static void time_main_area_draw(const bContext *C, ARegion *ar)
/* clear and setup matrix */
BIF_GetThemeColor3fv(TH_BACK, col);
- col[0]= 1.0f;
- col[1]= 0.8f;
- col[2]= 0.0f;
glClearColor(col[0], col[1], col[2], 0.0);
glClear(GL_COLOR_BUFFER_BIT);
@@ -135,8 +133,9 @@ static void time_main_area_draw(const bContext *C, ARegion *ar)
/* grid */
unit= (stime->flag & TIME_DRAWFRAMES)? V2D_UNIT_FRAMES: V2D_UNIT_SECONDS;
- BIF_view2d_calc_grid(C, &stime->v2d, unit, V2D_GRID_CLAMP, winx, winy);
- BIF_view2d_draw_grid(C, &stime->v2d, V2D_VERTICAL_LINES|V2D_VERTICAL_AXIS);
+ grid= BIF_view2d_calc_grid(C, &stime->v2d, unit, V2D_GRID_CLAMP, winx, winy);
+ BIF_view2d_draw_grid(C, &stime->v2d, grid, V2D_VERTICAL_LINES|V2D_VERTICAL_AXIS);
+ BIF_view2d_free_grid(grid);
/* current frame */
time_draw_cfra_time(C, stime);