From: Henrik Brautaset Aronsen Date: Tue, 6 Dec 2011 18:42:20 +0000 (+0100) Subject: Move depth/time grid back X-Git-Url: http://git.tdb.fi/?a=commitdiff_plain;h=34a0f5255ae8032ec33732881384be644af74355;hp=46e72b698abfbaa371ec7e3e0d19bbdac322d17c;p=ext%2Fsubsurface.git Move depth/time grid back The temperature profile was behind the white depth/time grid. Signed-off-by: Henrik Brautaset Aronsen --- diff --git a/profile.c b/profile.c index b01514a..716ce10 100644 --- a/profile.c +++ b/profile.c @@ -1334,13 +1334,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);