diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-12-06 10:58:06 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-12-06 10:58:06 -0800 |
commit | ce6c3ee56d372e2ef8386a065fbf4bce4cfa0ffc (patch) | |
tree | 9a1aa04587934f174c01ad0546ee2451c34abd19 /profile.c | |
parent | 3f624a2eb30ebc17abadedea888072186ea239bb (diff) | |
parent | 34a0f5255ae8032ec33732881384be644af74355 (diff) | |
download | subsurface-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.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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); |