summaryrefslogtreecommitdiffstats
path: root/profile.c
diff options
context:
space:
mode:
authorGravatar Linus Torvalds <torvalds@linux-foundation.org>2011-12-06 10:58:06 -0800
committerGravatar Linus Torvalds <torvalds@linux-foundation.org>2011-12-06 10:58:06 -0800
commitce6c3ee56d372e2ef8386a065fbf4bce4cfa0ffc (patch)
tree9a1aa04587934f174c01ad0546ee2451c34abd19 /profile.c
parent3f624a2eb30ebc17abadedea888072186ea239bb (diff)
parent34a0f5255ae8032ec33732881384be644af74355 (diff)
downloadsubsurface-ce6c3ee56d372e2ef8386a065fbf4bce4cfa0ffc.tar.gz
Merge branch 'grid-to-back' of git://github.com/henrik242/subsurface
* 'grid-to-back' of git://github.com/henrik242/subsurface: Move depth/time grid back
Diffstat (limited to 'profile.c')
-rw-r--r--profile.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/profile.c b/profile.c
index cb0bc2d5d..5d5aff518 100644
--- a/profile.c
+++ b/profile.c
@@ -1382,13 +1382,13 @@ void plot(struct graphics_context *gc, cairo_rectangle_int_t *drawing_area, stru
gc->maxx = (drawing_area->width - 2*drawing_area->x);
gc->maxy = (drawing_area->height - 2*drawing_area->y);
- /* Temperature profile */
- plot_temperature_profile(gc, pi);
-
/* Depth profile */
plot_depth_profile(gc, pi);
plot_events(gc, pi, dive);
+ /* Temperature profile */
+ plot_temperature_profile(gc, pi);
+
/* Cylinder pressure plot */
plot_cylinder_pressure(gc, pi, dive);